1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 11:02:55 +02:00
Files
archived-php-src/Zend/tests/exception_handler_004.phpt
2020-07-10 21:05:28 +02:00

21 lines
539 B
PHP

--TEST--
exception handler tests - 4
--FILE--
<?php
try {
set_exception_handler("fo");
} catch (\TypeError $e) {
echo $e->getMessage() . \PHP_EOL;
}
try {
set_exception_handler(array("", ""));
} catch (\TypeError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
set_exception_handler(): Argument #1 ($exception_handler) must be a valid callback or null, function "fo" not found or invalid function name
set_exception_handler(): Argument #1 ($exception_handler) must be a valid callback or null, class "" not found