Search notes:

PHP: error handling

Some functions

set_error_handler() Set custom error handler function. This handler function should call error_reporting()
register_shutdown_function()
error_get_last()
error_reporting()

Error control operator

The @ sign is the (only) error control operator.
It can be prepended an expression in order to suppress the error messages that the expression might cause.
Apparently, some developers refer to the error control operator as the stfu operator.

Error types that cannot be handled in a user defined function

Error types that cannot be handled in a user defined function include:

Index