spl_autoload_register() 延迟加载

/*
(PHP 5 >= 5.1.2, PHP 7)
php延迟加载
*/
function my_load($class)
{
require($class.'.php');
}

spl_autoload_register('my_load');

$is_girl=$_GET['sex'] == 0 ? true : false;
if($is_girl)
{

echo '

this is a girl

'; $test1 = new Test1;

}else{

echo '

this is a boy

'; $test2 = new Test2;

}

?>

你可能感兴趣的:(spl_autoload_register() 延迟加载)