function _drupal_error_handler

Provides custom PHP error handling.

Parameters

$error_level: The level of the error raised.

$message: The error message.

$filename: The filename that the error was raised in.

$line: The line number the error was raised at.

$context: An array that points to the active symbol table at the point the error occurred.

2 calls to _drupal_error_handler()
BootstrapGetFilenameTestCase::fileNotFoundErrorHandler in drupal/modules/simpletest/tests/bootstrap.test
Skips handling of "file not found" errors.
BootstrapGetFilenameWebTestCase::fileNotFoundErrorHandler in drupal/modules/simpletest/tests/bootstrap.test
Skips handling of "file not found" errors.
2 string references to '_drupal_error_handler'
_drupal_bootstrap_configuration in drupal/includes/bootstrap.inc
Sets up the script environment and loads settings.php.
_drupal_get_last_caller in drupal/includes/errors.inc
Gets the last caller from a backtrace.

File

drupal/includes/bootstrap.inc, line 2589
Functions that need to be loaded on every Drupal request.

Code

function _drupal_error_handler($error_level, $message, $filename, $line, $context) {
  require_once DRUPAL_ROOT . '/includes/errors.inc';
  _drupal_error_handler_real($error_level, $message, $filename, $line, $context);
}