PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-03-02 11:52:59 浏览: 评论:0
这篇文章主要介绍了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后面有一个空格,如果不写也会出现这个错误,虽然这个错误是不经意间,但有时还是很难找出来,大家注意下吧。
Tags: syntax error syntax
- 上一篇:分享一个php 的异常处理程序
- 下一篇:PHP判断表单复选框选中状态完整例子
相关文章
- ·syntax error, unexpected T_CONCAT_EQUAL(2013-11-28)
- ·PHP Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE(2013-11-29)
- ·Parse error: syntax error, unexpected T_LNUMBER(2013-11-29)
- ·Parse Error: syntax error, unexpected $end 错误(2013-12-02)
- ·PHP Parse Error: syntax error, unexpected $end 错误的解决办法(2013-12-04)
- ·php提示Parse error: syntax error, unexpected T_ENDWHILE in(2014-09-21)
- ·php An error occured(2013-11-28)
- ·Fatal error: Call to undefined function curl_init(2013-11-28)
- ·Fatal error: Cannot redeclare 常见问题(2013-11-29)
- ·php 错误屏蔽 error_reporting详解(2013-11-29)
- ·php中Fatal error: Class ZipArchive not found的解决办法(2013-12-02)
- ·FastCGI Error Error Number: 5 (0x80070005)解决办法(2013-12-03)
- ·php错误Fatal error: Out of memory (allocated 262144)(2013-12-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)