summaryrefslogtreecommitdiff
path: root/ext/standard/tests/class_object/method_exists_basic_003.phpt
blob: c10763267cb5e9082f7b28175b33c89419f679f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--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";
?>
--EXPECT--
In autoload(UndefC)
bool(false)
Done