首页 > 网络编程 > PHP编程 > php技巧 > PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
投稿:junjie
这篇文章主要介绍了PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法,需要的朋友可以参考下
今天在写PHP程序的时候总是出现这样的错误:Parse error: syntax error, unexpected end of file in *.php on line *,然后我就根据提示,找到那个文件,然后错误中总是提示最后一行出错,我找到最后一行发现是</html>,晕的,这能有什么错误,找了好久才找到问题所在,拿来分享。
出现这个错误的原因就是语法错误,肯定是PHP程序的书写不规范造成,我后来一条一条看才发现,原来是PHP语句标识符错了,正常情况下应该是这样的:<?php 你的PHP语句?>,我写成了这样:<? 你的PHP语句?>,当然写成这样也不错,只是我没有在php.ini中开启短标签,所以就造成了这个错误,另外要注意,<?php后面有一个空格,如果不写也会出现这个错误,虽然这个错误是不经意间,但有时还是很难找出来,大家注意下吧。
您可能感兴趣的文章:
- UNEXPECTED INCONSISTENCY: RUN fsck MANUALLY
- Vue项目报错:Uncaught SyntaxError: Unexpected token <
- vue-cli 打包后提交到线上出现 "Uncaught SyntaxError:Unexpected token" 报错
- python出现"IndentationError: unexpected indent"错误解决办法
- shell脚本报错:"[: =: unary operator expected"解决办法
- JS提示:Uncaught SyntaxError: Unexpected token ILLEGAL错误的解决方法
- JS提示:Uncaught SyntaxError:Unexpected token ) 错误的解决方法
- Expected conditions模块使用方法汇总代码解析