关于Parse error: syntax error, unexpected end of file

这里提供给大家的是一个小经验分享,关于遇到Parse error: syntax error, unexpected end of file错误的解决办法,希望能够帮助到各位。

最近在FreeBSD上配置PHP环境,发现iProber.php探针总是显示如下错误,而雅黑探针显示正常

Parse error: syntax error, unexpected end of file in /usr/local/www/apache24/data/iProber.php on line 902

看看程序 902行,代码最后一行,这有什么错误?google搜,找到了:

In PHP 5, the following error may appears as an error entry in Apache error log or simply displays on PHP web page, even if calling to php scripts with php_info() works perfectly and successfully returns information on PHP configurations:

Parse Error: syntax error, unexpected $end in ….. scripts.php on line …

The error may caused by a missing curly bracket in PHP script coding. Beside, it may also caused by error in PHP coding in class definition, as in PHP, a class definition cannot be broke up and distributed into multiple files, or into multiple PHP blocks, unless the break is within a method declaration.

But more commonly, the error is often caused by the use of Short Open tags in PHP,

To use short open tags, it must be enabled in PHP.INI. Search for short_open_tag in PHP.INI, and change the value to On. The line should look line:

short_open_tag = On

欺我英文不好啊?看看其它几条搜索,都没说到点子上,那就看看英文了,虽不能如数翻译,大致意思是瞧明白了:
错误发生是使用了短标签,可以在php.ini中设置short_open_tag = On

原来Parse error 提示一般是语法错误,PHP代码中使用了缩短的PHP开始和结束标签,如:“ ” 或者是使用了开放的标签,语句没有结束 也就是编程基本的一些错, 比如没注意 语句结束加 ";" 或者 if(){…} 后面忘了"}" ;〈?php…?〉忘了“?〉”

解决办法有如下两种:

第1种办法:检查代码,比如将代码中的全部替换成

第2种办法:打开 php.ini ,找到 short_open_tag = Off 这一行,将 Off 修改为 On,保存退出并重启 Apache 即可解决问题。

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注