PHP program to Get the last occurred error

bookmark

<?php
echo $x;
  print_r(error_get_last());
?>


Output:

Array                                                       
(                                                           
    [type] => 8                                             
    [message] => Undefined variable: x                      
    [file] => /home/students/0d0149c0-f42e-11e6-a8c0-b738b9f
f32f9.php                                                   
    [line] => 2                                             
)