聊聊brew link更换php版本失败问题

聊聊brew link更换php版本失败问题,第1张

概述聊聊brew link更换php版本失败问题 本文给大家聊聊brew link更换PHP版本失败问题,希望对需要的朋友有所帮助!

问题描述:

我透過 brew 安裝三種PHP版本

PHP 5.6PHP 7.4PHP 8.0

$ PHP -v

PHP 8.0.3 (cli) (built: Mar  4 2021 20:45:17) ( NTS )copyright (c) The PHP GroupZend Engine v4.0.3, copyright (c) Zend TechnologIEs    with Zend OPcache v8.0.3, copyright (c), by Zend TechnologIEs

停用8.0使用7.4

$ brew unlink [email protected] && brew link [email protected] /usr/local/Cellar/PHP/8.0.3... 0 symlinks removed.linking /usr/local/Cellar/[email protected]/7.4.16... 264 symlinks created.$ PHP -v

還是一樣版本

我開新的終端機也是一樣8.0.3

PHP 8.0.3 (cli) (built: Mar  4 2021 20:45:17) ( NTS )copyright (c) The PHP GroupZend Engine v4.0.3, copyright (c) Zend TechnologIEs    with Zend OPcache v8.0.3, copyright (c), by Zend TechnologIEs

中規中矩 *** 作了

這是哪裏有少設置了?

分析解决:

你可以尝试安装一个PHP选择器

brew updatebrew upgrade

参考文档

https://github.com/shivammathur/homebrew-PHP

安装指定PHP brew install shivammathur/PHP/[email protected]

链接PHP版本 brew link --overwrite --force [email protected]

如果出现报错

Warning: Already linked: <Cellar Path>To relink:  brew unlink <formula> && brew link <formula>

执行

brew unlink [email protected] link --overwrite --force [email protected]

重启服务

apache brew services restart httpdNginx brew services restart Nginx

安装结果

To enable PHP in Apache add the following to httpd.conf and restart Apache:    LoadModule PHP7_module /usr/local/opt/[email protected]/lib/httpd/modules/libPHP7.so    <filesMatch \.PHP$>        SetHandler application/x-httpd-PHP    </filesMatch>Finally, check DirectoryIndex includes index.PHP    DirectoryIndex index.PHP index.HTMLThe PHP.ini and PHP-fpm.ini file can be found in:    /usr/local/etc/PHP/7.0/[email protected] is keg-only, which means it was not symlinked into /usr/local,because this is an alternate version of another formula.If you need to have [email protected] first in your PATH run:  echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.zshrc  echo 'export PATH="/usr/local/opt/[email protected]/sbin:$PATH"' >> ~/.zshrcFor compilers to find [email protected] you may need to set:  export LDFLAGS="-L/usr/local/opt/[email protected]/lib"  export CPPFLAGS="-I/usr/local/opt/[email protected]/include"To have launchd start shivammathur/PHP/[email protected] Now and restart at login:  brew services start shivammathur/PHP/[email protected], if you don't want/need a background service you can just run:  PHP-fpm

欢迎讨论!

推荐学习:《PHP视频教程》 总结

以上是编程之家为你收集整理的聊聊brew link更换php版本失败问题全部内容,希望文章能够帮你解决聊聊brew link更换php版本失败问题所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/997196.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存