mirror of
https://github.com/php/php-src.git
synced 2024-11-26 19:33:55 +08:00
d30cd7d7e7
Closes GH-5590
20 lines
348 B
PHP
20 lines
348 B
PHP
--TEST--
|
|
Ensure the ReflectionClass constructor triggers autoload.
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register(function ($name) {
|
|
echo "In autoload: ";
|
|
var_dump($name);
|
|
});
|
|
|
|
try {
|
|
new ReflectionClass("UndefC");
|
|
}
|
|
catch (ReflectionException $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
In autoload: string(6) "UndefC"
|
|
Class "UndefC" does not exist
|