`

Parse error: syntax error, unexpected $end

    博客分类:
  • php
阅读更多

Parse error: syntax error, unexpected $end:(特别是重装系统后

解决:

最主要的是因为使用了<? ?>的简写标签,这就需要在 php.ini中开启短标签,设置方法是打开php.ini,找到short_open_tag = Off,修改为short_open_tag = On;


如果不想修改 php.ini文件,可以在root目录下修改.htaccess中:

 php_flag short_open_tag on;
否则就会报异常:Parse error: syntax error, unexpected $end  in line XXX;

之前也有发现同样问题,但问题原因解决办法不同,列举一下:

是否缺少了PHP脚本的结束标记, "?>" 或者缺少了 ";",或者是也php文件的xxx行多了某个无法识别的标识符;

据说还有:一个PHP类的代码不能在多个文件或者多个PHP块,求验证。

 

 

 

分享到:
评论

相关推荐

    PHP Parse Error: syntax error, unexpected $end 错误的解决办法

    在本文中,我们将详细探讨"PHP Parse Error: syntax error, unexpected $end"错误的产生原因及其解决办法。此问题在配置服务器或编写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”是一个常见的编译时错误,意味着解析器在文件末尾遇到了意外的情况,通常是因为代码的语法不正确导致的。...

    PHP syntax error, unexpected $end 错误的一种原因及解决

    Parse error: syntax error, unexpected $end in script.php on line xx 调试了一会后发现产生错误的行是文件中间某行 //$str .= “?&gt;\n”; 想起来了 PHP 解释器允许的结尾标记那行还可以用单行注释,即 //$str ....

    php异常:Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE eval&#40;&#41;'d code error

    针对这些知识点,我们在实际编程中应当如何操作来避免这类“Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE eval()’d code error”错误呢? - 在使用eval()函数时,务必要对输入的字符串进行...

    php 定界符格式引起的错误

    错误代码:Parse error: syntax error, unexpected $end in H:\wamp\www\testing\test\2.1.4.php on line 16 错误源代码: 复制代码 代码如下: &lt;?php $str = &lt;&lt;&lt;EOD&gt;&lt;font size=’2′&gt;测试字符串&lt;/font&gt; ...

    Unexpected token c in JSON at position 0 报错信息及解决

    在编程过程中,我们可能会遇到各种错误,其中"Unexpected token c in JSON at position 0"是一个常见的JavaScript解析错误,通常发生在尝试使用`JSON.parse()`函数解析一个预期为JSON格式的字符串时,但该字符串实际...

    parse-json:解析JSON有更多有用的错误

    SyntaxError: Unexpected token } */ parseJson ( json ) ; /* JSONError: Unexpected token } in JSON at position 16 while parsing near '{ "foo": true,}' 1 | { 2 | "foo": true, &gt; 3 | } | ^ */ parseJson ...

    PHP常见错误提示含义解释(实用!值得收藏)

    3. Parse error: syntax error, unexpected $end 这个错误意味着代码中的大括号不匹配。可能是多出或者缺少大括号。解决方法是仔细检查代码中所有的大括号,确保它们都成对出现。 4. Parse error: syntax error, ...

    js的json转对象.pdf

    // 输出:SyntaxError: Unexpected end of input } ``` 为避免此类错误,需要确保JSON字符串遵循以下规则: 1. 字符串必须用双引号包裹,不能使用单引号。 2. 双引号内若出现其他双引号,需使用反斜杠进行转义,如...

    php语法检查的方法总结

    最常见的语法错误提示是 Parse error:syntax error, unexpected end of file, expecting ',' or ';'。 为了检查这类错误,最传统的方法就是利用PHP自带的lint检查功能。Lint检查是一种静态代码分析工具,用于检查...

    acpi控制笔记本风扇转速

    Fixed a problem where the compiler could hang after syntax errors detected in an ElseIf construct. (BZ 453) Fixed a problem with the AmlFilename parameter to the DefinitionBlock() operator. An ...

Global site tag (gtag.js) - Google Analytics