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

php print EOF实现方法_php技巧

程序员文章站 2022-06-05 08:31:20
...
我写段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;
?>
相关标签: php print EOF