这种东西居然还支持heredoc,真是没想到啊
<?php
# . is the connector of strings
echo date('H:i, jS F')."<br>";
// '' is a string, "" is a string would be evaluate
$name="Bob";
echo "$name's Auto Parts<br>"; # 这叫“插补”interpolation
echo $name.''s Auto Parts<br>';
/* heredoc */
echo "<pre>";
echo <<< EndOfHeredoc
heredoc line 1
heredoc line 2
EndOfHeredoc;
# EndOfHeredoc只能单独占用一行,并且这一行必须由它开头,
# 而且不能包括其它字符,连空格都不行,不过最后可以加上个分
# 号,分号前也不能有空格
echo "</pre>";
?>

















