简单的字符串可以用引号来输出,遇到复杂的html代码时候需要用php定界符来输出:
<?php
$name = 'Being'; //下面<<<EOT后面不能有空格
print <<<EOT
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>diwu.net</title>
</head>
<body>
<!--12321-->
Hello,{$name}!
Hello,$name!
</body>
</html>
EOT; //注意末尾的结束符必须靠边,其前面不能有空格?>