包含路径被ZF覆盖

时间:2013-04-04 01:10:39

标签: php zend-framework ubuntu include-path

我在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看到它。

我想知道什么是错的,因为它非常烦人!

1 个答案:

答案 0 :(得分:2)

将Zend包含路径更改为:

include_path=${include_path} ":/usr/share/php/libzend-framework-php:/usr/share/php:/usr/share/pear"