Writing php programs over the past few days, I feel that asp, asp. Net, and jsp are not as good as asp. Net. For example, session uses session_start ();, which makes it inconvenient to use file jump headers ....
Maybe it's some of the unfamiliar php features, but if I write too much, I will gradually adapt to it .....
Here we will organize a code compilation and debugging problem with the following errors:
Parse error: syntax error, unexpected $ end in D: \ xampp \ htdocs \ guestBook. php on line 330
Check the program's 330 lines and the last line of code. What is the error? Google Search:
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 deployments:
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 shoshould look line:
Short_open_tag = On
I am not good at English? Look at several other searches without having said anything, so let's take a look at English. Although it cannot be translated as a data translation, it means you understand it:
The error occurs when a short tag is used. You can set short_open_tag = On in php. ini.
The original Parse error prompt is generally a syntax error. An open label is used, and the statement is not terminated, that is, some basic programming errors. For example, if () or () {...} I forgot "}"; <? Php...?> Forgot "?> ". Check the code carefully, and the "}" is missing. The modification program runs normally.