试图在PHP的新行上打印o / p

时间:2014-11-04 01:15:16

标签: php

<?php

$author="Shweta";
print <<<END
this line 
is to test
END;

?>

有没有人知道为什么这不起作用?

1 个答案:

答案 0 :(得分:0)

使用这个:

<?php

$author="Shweta";
echo <<<EOT
this line 
is to test
EOT;

?>