我通过macports在/opt/local/中安装了PHP5,这是macports的默认位置。梨没有端口文件。如果我从pear站点执行标准pear安装,那么应该放置哪个目录位置来使用PHP?
答案 0 :(得分:26)
虽然curl选项有效,但在更新端口时不会更新。另一种选择:
sudo port install php5 +pear
这将安装带有pear的php5变体,与上面的下载位置相同,并且会在您更新macport时更新。
答案 1 :(得分:8)
我刚才遇到了类似的问题,并且正好在您提到的目录中安装PEAR。
curl -O http://pear.php.net/go-pear.phar
sudo php go-pear.phar
我更改了安装基目录($ prefix)以指向/ opt / local并运行安装程序。它修改了我的php.ini文件以包含PEAR路径。
我的bash路径已经包含/ opt / local / bin,所以PEAR刚刚工作了!
答案 2 :(得分:3)
我想知道为什么没有人写过更新的解决方案,所以我这样做:
sudo port install pear-PEAR
sudo port install php53-pear
将53
替换为您要使用的任何PHP版本。然后使用MacPorts安装所需的pear-package!您可以使用
port echo name:^pear-
如其他答案的评论中所述,请访问此处获取更多信息: https://superuser.com/q/650299/39309
答案 3 :(得分:0)
对于那些在MacPorts之外运行PHP的人来说,Ben的答案,通过以下修改,实际上是解决问题的方法。我需要PEAR来安装PHPUnit,所以我可以做一些单元测试,但是我使用XAMPP。
我遵循Ben的解决方案但在尝试安装时遇到错误。我的错误是:
WARNING! The include_path defined in the currently used php.ini does
not contain the PEAR PHP directory you just specified:
</opt/local/share/pear>
If the specified directory is also not in the include_path used by
your scripts, you will have problems getting any PEAR packages working.
Current include path : .:
Configured directory : /opt/local/share/pear
Currently used php.ini (guess) :
我将 当前使用的php.ini 的路径设置为以下内容并且完美运行:
/Applications/XAMPP/xamppfiles/etc/php.ini
希望在最坏的情况下,这有助于其他XAMPP用户!