AtomParser::error_handler() WordPress Method
The AtomParser::error_handler() is a custom error handler used by the AtomParser class. It is used to catch and handle any errors that may occur during the parsing process. This includes both fatal and recoverable errors. The handler can be used to log the errors, display a custom error message, or take any other action that may be necessary.
AtomParser::error_handler( $log_level, $log_text, $error_file, $error_line ) #
Contents
Source
File: wp-includes/atomlib.php
function error_handler($log_level, $log_text, $error_file, $error_line) { $this->error = $log_text; }
Expand full source codeCollapse full source codeView on TracView on GitHub