php-src/ext/standard/tests/class_object/method_exists_basic_003.phpt
Steph Fox f6cc4ee4df - killed off UEXPECT
- Tony has a patch that should fix all these
2008-05-26 23:45:15 +00:00

23 lines
490 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:
*/
function __autoload($name) {
echo "In __autoload($name)\n";
}
var_dump(method_exists('UndefC', 'func'));
echo "Done";
?>
--EXPECT--
In __autoload(UndefC)
bool(false)
Done