php print EOF实现方法
发布时间:2009-05-21 作者: 来源:转载
配对标记名的结尾标记名应单独一行,前后均不允许输出字符...(例如空格等不可见但存在的字符..)
我写段php代码如下:
复制代码 代码如下:
if(test case)
print<<<....html code....>
EOF;
else
print<<<....html code....>
EOF;
?>
如上写法是不可以的,需要把EOF标识符顶格:
复制代码 代码如下:
if(test case)
print<<<....html code....>
EOF;
else
print<<<....html code....>
EOF;
?>