Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 ZF1 项目中需要 PEAR 模块 Services_Ebay。我想将它及其依赖项放在 /library 中,以便项目完全独立。
在使用 ZF 或 PEAR 的自动装载机时,有推荐的方法吗?
设置您的包含路径
set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__ . '/library/');
这样可以确保 lib 本身中的 require 语句有效。PEAR1 库没有自动加载器,你需要你需要require_once的第一个文件。
require_once