php print EOF实现方法

  作者:bea

我写段php代码如下: 代码如下: <? if(test case) print<<<EOT <....html code....> EOF; else print<<<EOT <....html code....> EOF; ?> 如上写法是不可以的,需要把EOF标识符顶格: 代码如下: <? if(test case) print<<<EOT
我写段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;
?>




有用  |  无用

猜你喜欢