mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
16 lines
269 B
PHP
16 lines
269 B
PHP
--TEST--
|
|
method_exists() on non-existent class, with __autoload().
|
|
--FILE--
|
|
<?php
|
|
spl_autoload_register(function ($name) {
|
|
echo "In autoload($name)\n";
|
|
});
|
|
|
|
var_dump(method_exists('UndefC', 'func'));
|
|
|
|
echo "Done";
|
|
?>
|
|
--EXPECT--
|
|
In autoload(UndefC)
|
|
bool(false)
|
|
Done
|