1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > PHP Parse Error: syntax error unexpected $end 错误的解决办【PHP】

PHP Parse Error: syntax error unexpected $end 错误的解决办【PHP】

时间:2021-06-12 09:39:02

相关推荐

PHP Parse Error: syntax error  unexpected $end 错误的解决办【PHP】

后端开发|php教程

unexpected,$end

后端开发-php教程

这几天写php程序,感觉很多地方不如asp,,jsp顺手,比如session使用先得session_start();,文件跳转header用的也不方便….

支付宝当面付网站源码,vscode 显示变量树,ubuntu 备份 镜像,怎么运行tomcat 7,sqlite数据库怎么链接,为什么爬虫近几年才火起来,php 接口 继承,阜阳seo推广贵不贵,影视网站模板下载,自动化模板机厂家lzw

也许是不熟悉的php的一些特性吧,不过写多了,也就慢慢适应将就了…..

qb充值源码,vscode更换背景,ubuntu必须,tomcat网页压缩,sqlite查找相近的数,bootstrap 弹出插件,前端都用框架还学基础吗,特别小的黑色爬虫家里,php读取文件一行,seo更新系统,手机网站建站教育模板,网页数学公式代码,app宣传的网站模板 bootstraplzw

这里就整理一个代码编写调试问题,错误如下:

java日记本源码,vscode远程gdb,ubuntu费用,tomcat 类冲突,stm32添加sqlite,wp隐藏文章插件,大三web前端框架期末设计,怎么给爬虫设置访问间隔,php授权程序,大同专业的seo,wordpress 大学网站,jsp网页模板导航,网络销售模板下载安装lzw

Parse error: syntax error, unexpected $end in D:\xampp\htdocs\guestBook\guestBook.php on line 330

看看程序 330行,代码最后一行,这有什么错误?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 提示一般是 语法错误,使用了开放的标签,语句没有结束 也就是编程基本的一些错, 比如没注意 语句结束加 “;” 或者 if(){…} 后面忘了”}” ;忘了”?>”。仔细检查代码,果然是一处漏掉了”}”,修改程序正常运行

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。