There is no definitive list of PHP runtime errors. See this SO question . However, most PHP errors usually lend themselves to the following:
- Arithmetic errors
- Function call undefined
- Interaction with MySQL or other databases
- File interaction
- Network services
As mentioned above, calling an undefined variable usually does not lead to a fatal error. PHP usually accepts NULL for its use.
source share