我遇到了 PHP 和 Zend Framework 的这个小问题。
我使用它安装了 ZF apt-get install libzend-framework-php
,它还安装了二进制文件zf.sh
和zend-framework.ini
in /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
你可以在这个链接上看到它。
我想知道怎么了,因为它很烦人!