php-src/Zend/tests/exception_handler_004.phpt
Máté Kocsis 7aa2d3519b
Zend parameter renames amendment
Closes GH-6228
2020-09-29 11:04:09 +02:00

21 lines
521 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 ($callback) must be a valid callback or null, function "fo" not found or invalid function name
set_exception_handler(): Argument #1 ($callback) must be a valid callback or null, class "" not found