美文网首页
spl_autoload_register() 延迟加载

spl_autoload_register() 延迟加载

作者: 刚_dbac | 来源:发表于2017-09-24 10:34 被阅读0次

    <?php
    /*
    (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 '<h1>this is a girl</h1>';
    $test1 = new Test1;
    

    }else{

    echo '<h1>this is a boy</h1>';
    
    $test2 = new Test2;
    

    }

    ?>

    相关文章

      网友评论

          本文标题:spl_autoload_register() 延迟加载

          本文链接:https://www.haomeiwen.com/subject/bystrxtx.html