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 errorSYNOPSISarray error_get_last (void )DESCRIPTIONGets information about the last error that occurred.RETURN VALUESReturns 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.EXAMPLESExample #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 ALSOError 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 |
sqlsrv_client_info(3) - php |
pg_fetch_all(3) - php |
Similar Topics in the Unix Linux Community |
---|
PHP: declared variables, strlen vs isset |