php print EOF php print EOF实现方法
人气:3想了解php print EOF实现方法的相关内容吗,在本文为您仔细讲解php print EOF的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:php,print,EOF,下面大家一起来学习吧。
我写段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;
?>
加载全部内容