php print EOF实现方法
程序员文章站
2023-11-09 21:53:16
我写段php代码如下: 复制代码 代码如下: if(test case) print<<
我写段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;
?>
复制代码 代码如下:
<?
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;
?>
上一篇: PHP 读取文件的正确方法