PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法

2015-01-24信息快讯网

这篇文章主要介绍了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后面有一个空格,如果不写也会出现这个错误,虽然这个错误是不经意间,但有时还是很难找出来,大家注意下吧。

php使用function_exists判断函数可用的方法
PHP图片处理之使用imagecopyresampled函数实现图片缩放例子
PHP判断一个gif图片是否为动态图片的方法
PHP图片处理之使用imagecopyresampled函数裁剪图片例子
PHP图片处理之使用imagecopy函数添加图片水印实例
php管理nginx虚拟主机shell脚本实例
php中FTP函数ftp_connect、ftp_login与ftp_chmod用法
PHP遍历目录函数opendir()、readdir()、closedir()、rewinddir()总结
PHP移动文件指针ftell()、fseek()、rewind()函数总结
php中filter_input函数用法分析
php5.3提示Function ereg() is deprecated Error问题解决方法
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2611816 bytes)
php使用ZipArchive提示Fatal error: Class ZipArchive not found in的解决方法
php中使用Ajax时出现Error(c00ce56e)的详细解决方案
为PHP安装imagick时出现Cannot locate header file MagickWand.h错误的解决方法
php开启与关闭错误提示适用于没有修改php.ini的权限
PHP错误Warning: Cannot modify header information - headers already sent by解决方法
安装ImageMagick出现error while loading shared libraries的解决方法
CodeIgniter错误mysql_connect(): No such file or directory解决方法
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
Discuz批量替换帖子内容的方法(使用SQL更新数据库)
ThinkPHP学习笔记(一)ThinkPHP部署
ThinkPHP的URL重写问题
分享一个php 的异常处理程序
PHP延迟静态绑定示例分享
美图秀秀web开放平台--PHP流式上传和表单上传示例分享
destoon安装出现Internal Server Error的解决方法
ThinkPHP实现跨模块调用操作方法概述
ThinkPHP之getField详解
Codeigniter上传图片出现“You did not select a file to upload”错误解决办法
PHP错误Cannot use object of type stdClass as array in错误的解决办法
Codeigniter出现错误提示Error with CACHE directory的解决方案
CI使用Tank Auth转移数据库导致密码用户错误的解决办法
Codeigniter中禁止A Database Error Occurred错误提示的方法
PHP捕获Fatal error错误的方法
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
©2014-2024 dbsqp.com