exception_handler_004.phpt 593 B

123456789101112131415161718192021
  1. --TEST--
  2. exception handler tests - 4
  3. --FILE--
  4. <?php
  5. set_exception_handler("fo");
  6. set_exception_handler(array("", ""));
  7. set_exception_handler();
  8. set_exception_handler("foo", "bar");
  9. echo "Done\n";
  10. ?>
  11. --EXPECTF--
  12. Warning: set_exception_handler() expects the argument (fo) to be a valid callback in %s on line %d
  13. Warning: set_exception_handler() expects the argument (::) to be a valid callback in %s on line %d
  14. Warning: set_exception_handler() expects exactly 1 parameter, 0 given in %s on line %d
  15. Warning: set_exception_handler() expects exactly 1 parameter, 2 given in %s on line %d
  16. Done