php-src/ext/spl/tests/spl_autoload_009.phpt
2012-10-10 10:27:49 +08:00

27 lines
381 B
PHP

--TEST--
SPL: spl_autoload() and friends
--INI--
include_path=.
--FILE--
<?php
function my_autoload($name)
{
require $name . '.class.inc';
var_dump(class_exists($name));
}
spl_autoload_register("spl_autoload");
spl_autoload_register("my_autoload");
$obj = new testclass;
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
%stestclass.inc
%stestclass.class.inc
bool(true)
===DONE===