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.
我们的团队正在使用 php zend 框架来开发网站
每次我们部署它都会在服务器中占用大量内存
使用zend,我们开发了近9 个站点。
我的问题是有可能将 zend 框架工作放在服务器中作为我所有网站的集中式工作
请帮助我们....
如果我对您的理解正确,您希望将 Zend 框架库放在一个位置但可用于多个应用程序(网站)。
如果这是您的问题:答案是肯定的。调整您php.ini include_path以反映 Zend 框架库的位置:
php.ini include_path
include_path=".;C:\Zend\ZendServer\bin\pear;C:\Zend\ZendServer\share\ZendFramework\library;"
这是一个 windows 示例,但 *nix 示例非常相似。