PHP报错:syntax error, unexpected end of file

在最近写PHP代码的过程中,出现了Parse error: syntax error, unexpected end of file in xxxxxxxx  on line xx的错误。

在检查了几遍PHP代码后并没有发现什么问题,在网上查找资料后发现是使用了短标签。

例如:

可以在php.ini中设置short_open_tag = On

short_open_tag 是什么呢?
决定是否允许使用代码开始标志的缩写形式(<? ?> )。如果要和 XML 结合使用 PHP,可以禁用此选项以便于嵌入使用<?xml ?> 。否则还可以通过php来输出,例如:<?php echo ‘<?xml version=”1.0″‘; ?> 。如果禁用了,必须使用 PHP 代码开始标志的完整形式(<?php ?> )。
注意:本指令也会影响到缩写形式 <?= ,它和 <? echo 等价。使用此缩写需要short_open_tag 的值为 On。

发表评论