php print EOF实现方法
2015-01-24信息快讯网
<? 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; ?>