mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
19 lines
348 B
PHP
19 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
|