1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00
Files
archived-php-src/Zend/tests/bug67436/bug67436.phpt
T
2020-02-03 22:52:20 +01:00

28 lines
684 B
PHP

--TEST--
bug67436: Autoloader isn't called if user defined error handler is present
--INI--
error_reporting=-1
--SKIPIF--
<?php if (extension_loaded('Zend OPCache')) die('skip Opcache overrides error handler'); ?>
--FILE--
<?php
spl_autoload_register(function($classname) {
if (in_array($classname, array('a','b','c'))) {
require_once __DIR__ . "/{$classname}.inc";
}
});
set_error_handler(function ($errno, $errstr, $errfile, $errline) {
var_dump($errstr);
}, error_reporting());
a::staticTest();
$b = new b();
$b->test();
--EXPECT--
string(76) "The magic method __invoke() must have public visibility and cannot be static"
b::test()
a::test(c::TESTCONSTANT)