Zend Autoloader - 从目录加载文件
我想知道是否有任何方法可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更新
刚刚找到SPL的RecursiveDirectoryIterator。这可能是一个更好的选择。
没有任何 Zend Framework 特定的内容,但您可以查看 PHP SPL 的 DirectoryIterator< /a>.
您可以像这样使用它:(未经测试)
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)
如果这些库符合 PSR-0,您可以使用
这将使 Zend 加载任何未知类(在 Some/Class.php 中查找 Some_Class)。
If those libs are PSR-0 compilant, you can use
That will make Zend load any unknown classes (looking for Some_Class in Some/Class.php).