HosipLan

Untitled

Feb 10th, 2014
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. set_error_handler(function($severity, $message) { // zachytávání chyb
  2.         restore_error_handler();
  3.         throw new InvalidArgumentException("parse_ini_file(): $message"); // konverze na výjimku
  4. });
  5.  
  6. parse_ini_file(...); // nejaky tvuj chyb ktery haze warning/notices
  7.  
  8. restore_error_handler(); // ukončení zachytávání chyb
Advertisement
Add Comment
Please, Sign In to add comment