当前位置:Gxlcms > PHP教程 > phpprintEOF实现方法_PHP教程

phpprintEOF实现方法_PHP教程

时间:2021-07-01 10:21:17 帮助过:19人阅读

我写段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;
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/320101.htmlTechArticle我写段php代码如下: 代码如下:

? if(test case) printEOT ....html code.... EOF; else printEOT ....html code.... EOF; ? 如上写法是不可以的,需要把...

人气教程排行