mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
24 lines
482 B
PHP
24 lines
482 B
PHP
--TEST--
|
|
Ensure ReflectionClass::implementsInterface triggers autoload.
|
|
--SKIPIF--
|
|
<?php extension_loaded('reflection') or die('skip'); ?>
|
|
--FILE--
|
|
<?php
|
|
function __autoload($name)
|
|
{
|
|
echo "In autoload: ";
|
|
var_dump($name);
|
|
}
|
|
|
|
$rc = new ReflectionClass("stdClass");
|
|
|
|
try {
|
|
$rc->implementsInterface("UndefI");
|
|
} catch (ReflectionException $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
In autoload: string(6) "UndefI"
|
|
Interface UndefI does not exist
|