php man page for error_get_last

Query: error_get_last

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

ERROR_GET_LAST(3)							 1							 ERROR_GET_LAST(3)

error_get_last - Get the last occurred error

SYNOPSIS
array error_get_last (void )
DESCRIPTION
Gets information about the last error that occurred.
RETURN VALUES
Returns an associative array describing the last error with keys "type", "message", "file" and "line". If the error has been caused by a PHP internal function then the "message" begins with its name. Returns NULL if there hasn't been an error yet.
EXAMPLES
Example #1 An error_get_last(3) example <?php echo $a; print_r(error_get_last()); ?> The above example will output something similar to: Array ( [type] => 8 [message] => Undefined variable: a [file] => C:WWWindex.php [line] => 2 )
SEE ALSO
Error constants, Variable $php_errormsg, Directive $display_errors, Directive $html_errors, Directive $xmlrpc_errors. PHP Documentation Group ERROR_GET_LAST(3)
Related Man Pages
array_flip(3) - php
array_keys(3) - php
array(3) - php
get_defined_functions(3) - php
scandir(3) - php
Similar Topics in the Unix Linux Community
PHP: declared variables, strlen vs isset