Guest User

Untitled

a guest
Jul 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. if(!(@include_once 'file.php'))
  2.  
  3. if(!file_exists('file.php'))
  4. throw new MyException('file not found');
  5.  
  6. set_error_handler(function() {
  7. // Работа над ошибками
  8. throw new MyException('file not found');
  9. return true;
  10. });
  11. // ........
Add Comment
Please, Sign In to add comment