Heim >Backend-Entwicklung >PHP-Tutorial >apache - YOSEMITE 10.10.2 自带的PHP无法被brew安装的所替代?

apache - YOSEMITE 10.10.2 自带的PHP无法被brew安装的所替代?

WBOY
WBOYOriginal
2016-06-06 20:34:421036Durchsuche

我的安装方法(主要参考了:http://www.cnblogs.com/xiangmin/p/4279627.html)

<code>brew options php56 && brew install php56  
echo 'export PATH="$(brew --prefix homebrew/php/php56)/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
brew install php56-xdebug php56-mcrypt php56-imagick   
sudo apachectl restart
</code>

打开浏览器,进入http://localhost/phpinfo.php, 发现依然无法替代yosemite自带的PHP 5.5.14

回复内容:

我的安装方法(主要参考了:http://www.cnblogs.com/xiangmin/p/4279627.html)

<code>brew options php56 && brew install php56  
echo 'export PATH="$(brew --prefix homebrew/php/php56)/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
brew install php56-xdebug php56-mcrypt php56-imagick   
sudo apachectl restart
</code>

打开浏览器,进入http://localhost/phpinfo.php, 发现依然无法替代yosemite自带的PHP 5.5.14

修改apache的配置httpd.conf,将LoadModule php5_module libexec/apache2/libphp5.so修改成泥新生成的so,比如:LoadModule php5_module /usr/local/opt/php56/libexec/apache2/libphp5.so。然后重启apache

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