我在PHP和Zend Framework中遇到了这个小问题。
我使用apt-get install libzend-framework-php
安装了ZF,它还在zf.sh
中安装了二进制文件zend-framework.ini
和/etc/php5/apache2/conf.d
。我取消注释文件中的行:
[Zend]
include_path=${include_path} ":/usr/share/php/libzend-framework-php"
问题是这完全覆盖了我的include_path。通常,它包含/usr/share/php:/usr/share/pear
。
我的include_path现在只有:(来自phpinfo())
include_path :/usr/share/php/libzend-framework-php
您可以在this link看到它。
我想知道什么是错的,因为它非常烦人!
答案 0 :(得分:2)
将Zend包含路径更改为:
include_path=${include_path} ":/usr/share/php/libzend-framework-php:/usr/share/php:/usr/share/pear"