php-src/Zend/tests/exception_handler_004.phpt
2019-03-11 11:32:20 +01:00

15 lines
355 B
PHP

--TEST--
exception handler tests - 4
--FILE--
<?php
set_exception_handler("fo");
set_exception_handler(array("", ""));
echo "Done\n";
?>
--EXPECTF--
Warning: set_exception_handler() expects the argument (fo) to be a valid callback in %s on line %d
Warning: set_exception_handler() expects the argument (::) to be a valid callback in %s on line %d
Done