0

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

为什么!?

4

1 回答 1

1

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

解决方案可能会更改MAMP_PATH为:

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

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

于 2013-03-06T12:11:15.823 回答