mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
22 lines
500 B
PHP
22 lines
500 B
PHP
--TEST--
|
|
method_exists() on non-existent class, with __autoload().
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : proto bool is_subclass_of(object object, string class_name)
|
|
* Description: Returns true if the object has this class as one of its parents
|
|
* Source code: Zend/zend_builtin_functions.c
|
|
* Alias to functions:
|
|
*/
|
|
|
|
spl_autoload_register(function ($name) {
|
|
echo "In autoload($name)\n";
|
|
});
|
|
|
|
var_dump(method_exists('UndefC', 'func'));
|
|
|
|
echo "Done";
|
|
?>
|
|
--EXPECTF--
|
|
In autoload(UndefC)
|
|
bool(false)
|
|
Done
|