php --version显示了与我预期不同的php版本

时间:2013-03-06 12:01:58

标签: php

这是我的.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

为什么!?

1 个答案:

答案 0 :(得分:1)

通过运行命令php找出正在调用的which php

解决方案可能是将MAMP_PATH更改为:

export MAMP_PATH=/Applications/MAMP/bin/php/php5.4.10/bin

(在您指定目录的路径中,而不是二进制文件)