mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
21 lines
382 B
PHP
21 lines
382 B
PHP
--TEST--
|
|
Ensure ReflectionClass::getProperty() triggers autoload
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register(function ($name) {
|
|
echo "In autoload: ";
|
|
var_dump($name);
|
|
});
|
|
|
|
$rc = new ReflectionClass("stdClass");
|
|
|
|
try {
|
|
$rc->getProperty("UndefC::p");
|
|
} catch (ReflectionException $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
In autoload: string(6) "undefc"
|
|
Class undefc does not exist
|