ubuntu下php版本切换
直接输入
sudo update-alternatives --config php
出现如下选择界面:
There are 3 choices for the alternative php (providing /usr/bin/php).
Selection Path Priority Status
------------------------------------------------------------
0 /usr/bin/php8.0 80 auto mode
* 1 /usr/bin/php7.0 70 manual mode
2 /usr/bin/php7.1 71 manual mode
3 /usr/bin/php8.0 80 manual mode
Press <enter> to keep the current choice[*], or type selection number:
输入需要的Php版本前面对应的数字,比如7.0就是数字1,然后按回车就可以了。
再次输入 php -v 查看版本吧,是不是变成php7.0版本了。