Heim >Backend-Entwicklung >PHP-Tutorial >用php-osx by Liip升级了PHP,终端执行PHP仍旧是原来老版本,请问如何解决?

用php-osx by Liip升级了PHP,终端执行PHP仍旧是原来老版本,请问如何解决?

WBOY
WBOYOriginal
2016-06-06 20:51:031260Durchsuche

用(php-osx by Liip)升级了PHP到5.4.10
curl -s http://php-osx.liip.ch/install.sh | bash -s 5.4

修改/etc/apache2/httpd.conf
LoadModule php5_module /usr/local/php5/libphp5.so

打开终端,输入php -v,结果显示如下:

PHP 5.3.15 with Suhosin-Patch (cli) (built: Aug 24 2012 17:45:44) 
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies

请问如何让终端也使用的是PHP5.4?

这个问题已被关闭,原因:

回复内容:

用(php-osx by Liip)升级了PHP到5.4.10
curl -s http://php-osx.liip.ch/install.sh | bash -s 5.4

修改/etc/apache2/httpd.conf
LoadModule php5_module /usr/local/php5/libphp5.so

打开终端,输入php -v,结果显示如下:

PHP 5.3.15 with Suhosin-Patch (cli) (built: Aug 24 2012 17:45:44) 
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies

请问如何让终端也使用的是PHP5.4?

将PHP5.4的bin目录加入PATH环境变量

<code>export PATH=/your_php_bin_path:$PATH
</code>

你的电脑里面安装了多个版本的php-cli,最新安装的这个cli版本需要设置一个别名替换调以前版本的。
出现这种情况是因为PHP的sapi。作为apache的模块和终端调用使用的是不同的sapi

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn