在PHP中,可以使用heredoc語法或nowdoc語法來創建多行字符串,并且可以對字符串進行格式化。下面是一個示例:
<?php
// 使用heredoc語法創建多行字符串并進行格式化
$str = <<<EOD
This is a multi-line string.
We can format it as we like.
For example, we can add line breaks and indentation.
EOD;
echo $str;
// 使用nowdoc語法創建多行字符串并進行格式化
$str2 = <<<'EOT'
This is another multi-line string.
We can format it as we like.
For example, we can add line breaks and indentation.
EOT;
echo $str2;
?>
在上面的示例中,我們使用heredoc語法和nowdoc語法創建了兩個多行字符串,并對它們進行了格式化。可以根據需要在字符串中添加換行符、縮進等來使字符串更易閱讀。