How to use error_get_last() to get information about the last error that occurred in PHP

1 Answer

0 votes
echo $number;
 
echo "<pre>";
print_r(error_get_last());
echo "</pre>";
   
/*
run:

Notice: Undefined variable: number in C:\xampp\htdocs\knowrex.com\test.php on line 8

Array
(
    [type] => 8
    [message] => Undefined variable: number
    [file] => C:\xampp\htdocs\knowrex.com\test.php
    [line] => 8
)
 
*/

 



answered Apr 14, 2016 by avibootz
...