Latest update on July 7, 2020 at 10:55 AM by David Webb .

When programming in PHP, webmaster can encounter an error with a message such as parse error:syntax error, unexpected $end. This error is related to a syntax error in PHP. The most probable cause of the error is a missing or a mismatched parenthesis in the PHP code.

To solve the missing parenthesis error in PHP, the code has to be checked from the beginning to search for it. One way to avoid errors is to use proper indentation in the code. Once all the parentheses in the code have been set correctly, parse error: syntax error, unexpected $end will be fixed.

How To Fix Parse Error

When you program in PHP, it is likely that you have encountered the following error:

Parse error: syntax error, unexpected $end in Command line code on line 1

What Causes this Error

In fact, this error means that PHP has finished analyzing your code, but you forgot to close a symbol somewhere in your page or in those that were included.

Situations:

You forgot to close a quote, so PHP is continuing to analyze your code until it finds the closing quotation mark.

You forgot to close a bracket, so from the last opening, PHP considers all the code that follows as part of a block that never ends.

You forgot to close a parenthesis, so from the last open parenthesis, PHP considers all the code that follows as part of a specific block (condition, arguments of functions etc) that does not end.

You forgot a comma, so for PHP there is an instruction in your code that has no end.

This means that the problem may not be on the line mentioned in the error message, as the missing symbol could be anywhere after that point.

Examples of codes that cause this error.

Here are some examples of codes that are causing this error.

if ($condition){

echo "true";

?>

Forgot to close a quote:

echo "test;

?>

Forgot to close a parenthesis:

mysql_query("mysite", "logon", "thisisnotasqlserverom" ;

?>

Forget a semicolon:

if ($test){

echo '1'

}

?>

How to Fix/Avoid this Error

This is often due to a poorly organized presentation of your code. Especially remember to indent your code well, to visually distinguish the different blocks.

Example of a clean code

//Equivalent of array_reverse()

function inverse_table($table)

{

$ret = array();

if (is_array($table) ){

for($i=sizeof($table) - 1; $i >= 0; $i++)

{

$ret[] = $table[$i];

}

}

return $ret;

}

Example of a non-indented code, harder to debug:

function inverse_table($table)

{

$ret = array();

if (is_array($table) ){

for($i=sizeof($table) - 1; $i >= 0; $i++)

{

$ret[] = $table[$i];

}

}

return $ret;

}

If you encounter this error, please note that it is not necessarily the end of your code, for example, omitting an accolade may be at the very beginning of your code, even if your file is 1000 lines.

Image: © Clment H - Unsplasom

Tags:
Tomasz David
Tomasz David

Leave a Comment