php-8.0.30-src/ext/spl/tests/spl_autoload_009.phpt

24 lines
347 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;
?>
--EXPECTF--
%stestclass.inc
%stestclass.class.inc
bool(true)