我的自动加载代码有什么问题

时间:2015-10-30 00:11:19

标签: php spl-autoload-register

我测试了两个代码以自动加载类到页面,但不适合我!

怎么了?

spl_autoload_extensions('.php, .class.php');
    spl_autoload_register(function ($name){
        if('inc/'."{$name}".'.class.php'){
            require('inc/'."{$name}".'.class.php');
        }
    });

AND:

class FW{
        public static function autoload($class){
            $class = strtolower($class);
            $fpath = realpath(dirname(__FILE__)).'/inc/'."{$class}". '.class.php';
            if(is_readable($fpath)){
                require_once($fpath);
            }
        }
    }

    spl_autoload_register('FW::autoload');

1 个答案:

答案 0 :(得分:0)

由于我的问题没有回答,我回答答案,并希望它会有用。 我将代码添加到Config.php并将类名称样式格式whatever.class.php编辑为class.whatever.php,这对我有用。

    //  Classes Autoloader
    spl_autoload_extensions('.php, .class.php');
    spl_autoload_register(function ($name){
        if(is_readable(realpath(dirname(__FILE__)).'/inc/class.'."{$name}".'.php')){
            require(realpath(dirname(__FILE__)).'/inc/class.'."{$name}".'.php');
        }
    });