我正在使用Debian压缩服务器。我已经使用aptitude install php-pear安装了PEAR。这创建了一个目录/usr/share/php/PEAR

我安装了一些PEAR软件包,包括Phing。我使用pear install --alldeps phing/phing安装了Phing文件,这些文件显示在/usr/share/php/phing中。

但是,在正常情况下,PEAR软件包不应该放在/usr/share/php/PEAR中吗?当我运行时

pear config-get php_dir

我得到“/usr/share/php”。我的配置有误吗?

最佳答案

/usr/share/php/

对Debian是正确的。
/usr/share/php/PEAR

本身包含PEAR本身的类。

使用/usr/share/php的原因是pear CLI工具是用于安装PHP库(或应用程序)的安装程序-因此选择php是正确的。

关于php - PEAR软件包通常在哪里安装?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5334251/

10-13 02:49