Zend Autoloader - 从目录加载文件

发布于 2024-12-01 03:36:56 字数 95 浏览 3 评论 0原文

我想知道是否有任何方法可以使用 Zend Autoloader 加载特定目录和子目录中的所有文件?
我正在尝试包含 Zend 之外的其他库,例如 JSTree。

I was wondering if there's any way to use Zend Autoloader to load all files from specific directory and subdirectories?
I'm trying to include other libraries beside Zend such as JSTree.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浪漫之都 2024-12-08 03:36:56

更新

刚刚找到SPL的RecursiveDirectoryIterator。这可能是一个更好的选择。


没有任何 Zend Framework 特定的内容,但您可以查看 PHP SPL 的 DirectoryIterator< /a>.

您可以像这样使用它:(未经测试

class My_DirectoryIterator extends DirectoryIterator
{
    /**
     * Load every file in the directory and it's sub directories
     * It might be a good idea to put a limit on subdirectory iteration so you don't disappear down a black hole...
     * @return void
     */
    public function loadRecursive()
    {
        foreach ($this as $file) {
            if ($file->isDir() || $file->isLink()) {
                $iterator = new self($file->getPathName());
                $iterator->loadRecursive();
            } elseif ($file->isFile()) {
                // Might want to check for .php extension or something first
                require_once $file->getPathName();
            }
        }
    }
}

// Load them all
$iterator = new My_DirectoryIterator('/path/to/parent/directory');
$iterator->loadRecursive();

Update

Just found SPL's RecursiveDirectoryIterator. That may be a better option.


There isn't anything Zend Framework specific, but you could take a look at PHP SPL's DirectoryIterator.

You could use it like this: (untested)

class My_DirectoryIterator extends DirectoryIterator
{
    /**
     * Load every file in the directory and it's sub directories
     * It might be a good idea to put a limit on subdirectory iteration so you don't disappear down a black hole...
     * @return void
     */
    public function loadRecursive()
    {
        foreach ($this as $file) {
            if ($file->isDir() || $file->isLink()) {
                $iterator = new self($file->getPathName());
                $iterator->loadRecursive();
            } elseif ($file->isFile()) {
                // Might want to check for .php extension or something first
                require_once $file->getPathName();
            }
        }
    }
}

// Load them all
$iterator = new My_DirectoryIterator('/path/to/parent/directory');
$iterator->loadRecursive();
痴情 2024-12-08 03:36:56

如果这些库符合 PSR-0,您可以使用

Zend_Loader_Autoloader::getInstance()->setFallbackAutoloader(true);

这将使 Zend 加载任何未知类(在 Some/Class.php 中查找 Some_Class)。

If those libs are PSR-0 compilant, you can use

Zend_Loader_Autoloader::getInstance()->setFallbackAutoloader(true);

That will make Zend load any unknown classes (looking for Some_Class in Some/Class.php).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文