PHP syntax error, unexpected $end 错误的一种原因及解决_php技巧
程序员文章站
2022-05-07 09:40:17
...
Parse error: syntax error, unexpected $end in script.php on line xx
调试了一会后发现产生错误的行是文件中间某行
//$str .= "?>\n";
想起来了 PHP 解释器允许的结尾标记那行还可以用单行注释,即 //$str .= "?>\n"; 被解释成结尾标记前有注释,注释的内容是 //$str .= ",而 ?> 后面的 \n"; 会被解释作 PHP 块外的内容按 HTML 输出出去!结果是给 $str .= "?>\n"; 这行添加 // 成注释后,反而多了个 ?> 的结束标记,造成原来真正的结束标记成了意料之外的(unexpected)了。
解决办法就是直接删掉这一行即可。
PHP 开始和结束标记所在行别写其它东西,是个好习惯。
调试了一会后发现产生错误的行是文件中间某行
//$str .= "?>\n";
想起来了 PHP 解释器允许的结尾标记那行还可以用单行注释,即 //$str .= "?>\n"; 被解释成结尾标记前有注释,注释的内容是 //$str .= ",而 ?> 后面的 \n"; 会被解释作 PHP 块外的内容按 HTML 输出出去!结果是给 $str .= "?>\n"; 这行添加 // 成注释后,反而多了个 ?> 的结束标记,造成原来真正的结束标记成了意料之外的(unexpected)了。
解决办法就是直接删掉这一行即可。
PHP 开始和结束标记所在行别写其它东西,是个好习惯。
上一篇: JS常用表单验证方法总结_javascript技巧
下一篇: char是什么数据类型
推荐阅读
-
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解决方法
-
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
-
PHP syntax error, unexpected $end 错误的一种原因及解决
-
PHP syntax error, unexpected $end 错误的一种原因及解决
-
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
-
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解决方法_php技巧
-
PHP syntax error, unexpected $end 错误的一种原因及解决_PHP教程
-
PHP Parse Error: syntax error, unexpected $end 错误的解决办_PHP