mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
d80d918547
As pointed out in comments on bug #66216.
20 lines
440 B
PHP
20 lines
440 B
PHP
--TEST--
|
|
Promoting require_once warning to exception
|
|
--FILE--
|
|
<?php
|
|
|
|
function exception_error_handler($errno, $errstr, $errfile, $errline ) {
|
|
throw new Exception($errstr);
|
|
}
|
|
set_error_handler("exception_error_handler");
|
|
|
|
try {
|
|
$results = require_once 'does-not-exist.php';
|
|
} catch (Exception $e) {
|
|
echo $e->getMessage(), "\n";
|
|
};
|
|
|
|
?>
|
|
--EXPECT--
|
|
require_once(does-not-exist.php): Failed to open stream: No such file or directory
|