mirror of
https://github.com/php/php-src.git
synced 2026-04-18 21:41:22 +02:00
Replace EG(autoload_func) with a C level zend_autoload hook. This avoids having to do one indirection through PHP function calls. The need for EG(autoload_func) was a leftover from the __autoload() implementation. Additionally, drop special-casing of spl_autoload(), and instead register it just like any other autoloading function. This fixes bug #71236 as a side-effect. Finally, change spl_autoload_functions() to always return an array. The distinction between false and an empty array no longer makes sense here. Closes GH-5696.
21 lines
405 B
PHP
21 lines
405 B
PHP
--TEST--
|
|
Classes can only be used once they are fully linked
|
|
--FILE--
|
|
<?php
|
|
|
|
spl_autoload_register(function($class) {
|
|
echo new ReflectionClass(A::class), "\n";
|
|
});
|
|
|
|
class A implements I {
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught ReflectionException: Class A does not exist in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): ReflectionClass->__construct('A')
|
|
#1 %s(%d): {closure}('I')
|
|
#2 {main}
|
|
thrown in %s on line %d
|