There are three basic types of errors in PHP:
Notices: These errors are not displayed to the user at all , the default behavior can be changed. These are non-critical errors that encounters by php while executing a script - for example variable has not defined and trying to accessing .
Warnings: Warnings errors are like trying to include() a file which does not exist. These errors are displayed to the user, but they does not effect script termination.
Fatal errors: These are critical errors and cause the immediate termination of the script - for example trying to access a object of non existing class.
0 Comment(s)