PHP新增功能。儘管跟隨了這本關於語法的書,但仍然對heredoc有一些令人沮喪的問題。下面的文字不應該縮進,因爲它應該是。heredoc不縮進或正常工作
<?php
$text="Mike's";
echo <<<_END
<!--END is just like double quoteing a var..
You can use single/double quotes without having to escape them first; inside
END. The last _END tag, has to be on the start of new line with nothing allowed
to procede it, not even whitespace-->
This is the $text 'first line'.
This is the $text 'second line'.
This is the $text 'third line'.
_END;
?>
你期望什麼?不是這個? http://codepad.org/kp7Ba18a – Gordon 2012-03-06 11:25:37
是的,正如書中的建議? – 2012-03-06 11:29:39
本書建議如何?如果你想要一個答案,你必須問一個實際的問題。現在你只是說「它不工作」,但你不知道它是如何工作的,或者說你期望它輸出什麼。鏈接的鍵盤上的輸出非常類似於它的樣子。你認爲它應該縮進,你會得到什麼? – Gordon 2012-03-06 11:29:57