这是我的.bash_profile
的摘录export MAMP_PATH=/Applications/MAMP/bin/php/php5.4.10/bin/php
export PATH="$MAMP_PATH:$PATH"
但是当我跑步时
$ php --version
我得到了这个输出:
PHP 5.3.15 with Suhosin-Patch (cli) (built: Jul 31 2012 14:49:18)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
为什么!?
答案 0 :(得分:1)
通过运行命令php
找出正在调用的which php
。
解决方案可能是将MAMP_PATH
更改为:
export MAMP_PATH=/Applications/MAMP/bin/php/php5.4.10/bin
(在您指定目录的路径中,而不是二进制文件)