mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
19 lines
440 B
PHP
19 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
|