Sometimes, while coding in PHP we get parse or syntax errors like those:
Parse error: syntax error, unexpected T_ECHO, expecting ',' or ';' in /var/www/example/index.php on line 4
I would like to know, if there is a list of all possible errors that PHP interpreter can output. I've searched php.net, but couldn't find such thing. I need this list for academic purposes.
UPDATE: Thank you for help, everybody. Seems there is no such list because of several reasons and I will have to do my research the other way.