DZone.com: What you must know about PHP errors...
Note: This article was originally published at PHPDeveloper
on 4 March 2011.
Giorgio Sironi has a new post to the DZone.com Web Builder Zone today giving a high-level guide to some of the PHP errors you could encounter in your development time.
While pure object-oriented languages produces mainly exceptions to signal an error, PHP started out as procedural and so it has a wide range of errors that can be raised along with exceptions.
He talks about a few of the most common error related issues:
- Exceptions
- Errors
- Error Types (E_NOTICE, E_PARSE, etc.)
- php.ini directives
- PHP functions for setting error handlers


