欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php print EOF实现方法

程序员文章站 2023-11-09 21:53:16
我写段php代码如下: 复制代码 代码如下:
我写段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;
?>

上一篇: PHP 读取文件的正确方法

下一篇: