我寫段php代碼如下:
復制代碼 代碼如下:
<?
if(test case)
print<<<EOT
<....html code....>
EOF;
else
print<<<EOT
<....html code....>
EOF;
?>
如上寫法是不可以的,需要把EOF標識符頂格:
復制代碼 代碼如下:
<?
if(test case)
print<<<EOT
<....html code....>
EOF;
else
print<<<EOT
<....html code....>
EOF;
?>