Questions tagged «parse-error»

2
在PHP中,为什么</ script>不显示解析错误?
我正在运行以下PHP代码: &lt;?php &lt;/script&gt; ?&gt; 没有解析错误,输出为 “ ?&gt;”(示例)。 在类似的情况下,我确实得到了解析错误: &lt;?php &lt;/div&gt; ?&gt; 解析错误:语法错误,...中出现意外的“ &lt;” 为什么不&lt;?php &lt;/script&gt; ?&gt;给出相同的错误?
193 php  syntax  parse-error 

17
解析错误:语法错误,我的PHP代码中文件意外结束
我收到一个错误: Parse error: syntax error, unexpected end of file in the line 使用此代码: &lt;html&gt; &lt;?php function login() { // Login function code } if (login()) {?&gt; &lt;h2&gt;Welcome Administrator&lt;/h2&gt; &lt;a href=\"upload.php\"&gt;Upload Files&lt;/a&gt; &lt;br /&gt; &lt;a href=\"points.php\"&gt;Edit Points Tally&lt;/a&gt; &lt;?php} else { echo "Incorrect login details. Please login"; } ?&gt; Some more …
173 php  html  parse-error 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.