mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
15 lines
355 B
PHP
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
|