error_get_last(3) php man page | unix.com

Man Page: error_get_last

Operating Environment: php

Section: 3

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_count_values(3) - php
array_filter(3) - php
array_reverse(3) - php
scandir(3) - php
stream_notification_callback(3) - php
Similar Topics in the Unix Linux Community
PHP: declared variables, strlen vs isset