9

我最初有这个自动加载器类来自动加载,但现在我也classes想自动加载。interfacesabstracts

所以我在这个答案之后做出了改变,

$reflection = new ReflectionClass($class_name);

# Return boolean if it is an interface.
if ($reflection->isInterface())
{
    $file_name = 'interface_'.strtolower(array_pop($file_pieces)).'.php';
}
else
{
    $file_name = 'class_'.strtolower(array_pop($file_pieces)).'.php';

}

我对其进行了测试,但这个自动加载器类根本不加载接口。有什么我错过的想法吗?

例如,这是我的接口文件,

interface_methods.php

及其内容,

interface methods 
{
    public function delete();
}

下面是我的整个这个自动加载器类。

class autoloader
{
    /**
     * Set the property.
     */
    public $directory;
    public $recursive;

    public function __construct($directory, $recursive = array('search' => 'models') ) 
    {
        # Store the data into the property.
        $this->directory = $directory;
        $this->recursive = $recursive;

        # When using spl_autoload_register() with class methods, it might seem that it can use only public methods, though it can use private/protected methods as well, if registered from inside the class:
        spl_autoload_register(array($this,'get_class'));
    }

    private function get_class($class_name)
    {
        # List all the class directories in the array.
        if ($this->recursive)
        {
            $array_directories =  self::get_recursive_directory($this->directory);
        }
        else
        {
            if (is_array($this->directory)) $array_directories =  $this->directory;
            else $array_directories =  array($this->directory);
        }

        # Determine the class is an interface.
        $reflection = new ReflectionClass($class_name);

        $file_pieces = explode('\\', $class_name);

        # Return boolean if it is an interface.
        if ($reflection->isInterface())
        {
            $file_name = 'interface_'.strtolower(array_pop($file_pieces)).'.php';
        }
        else
        {
            $file_name = 'class_'.strtolower(array_pop($file_pieces)).'.php';

        }

        # Loop the array.
        foreach($array_directories as $path_directory)
        {
            if(file_exists($path_directory.$file_name)) 
            {
                include $path_directory.$file_name;
            } 
        }

    }

    public function get_recursive_directory($directory)
    {
        $iterator = new RecursiveIteratorIterator
                    (
                        new RecursiveDirectoryIterator($directory),
                        RecursiveIteratorIterator::CHILD_FIRST
                    );

        # This will hold the result.
        $result = array();

        # Loop the directory contents.
        foreach ($iterator as $path) 
        {

            # If object is a directory and matches the search term ('models')...
            if ($path->isDir() && $path->getBasename() === $this->recursive['search']) 
            {

                # Add it to the result array.
                # Must replace the slash in the class - dunno why!
                $result[] = str_replace('\\', '/', $path).'/';
                //$result[] = (string) $path . '/';

            }

        }

        # Return the result in an array.
        return $result;
    }
}
4

1 回答 1

11

PHP 在任何类、接口或抽象类之间没有区别。您定义的自动加载器函数总是获取要自动加载的事物的名称,并且没有任何提示它是哪一个。

因此,您的命名策略无法自动加载,因为您在接口前面加上“interface_”,在类前面加上“class_”。我个人觉得这样的命名约定很烦人。

另一方面,您的自动装载机完全没有性能。它递归地扫描整个目录树只是为了找到一个类!下一堂课必须重新做所有的工作,而没有以前做过的好处!

如果您真的想自己做(而不是使用composer之类的东西为您做),请务必实现 PSR-0 自动加载器,并坚持类和接口的这种命名方案。

并且请选择一个有区别的类名前缀或命名空间,作为第一步,在你的自动加载器中检查要加载的类是否有这个前缀。如果没有,请立即返回。这使您不必旋转硬盘驱动器并查看该类的文件名是否存在。

如果前缀不匹配,则不是“您的”类要加载,因此您的自动加载器不知道如何执行此操作,甚至不应该尝试,但是已注册的不同自动加载器会知道。

于 2013-03-27T22:47:23.193 回答