一、刪除php的相關套件及設定
sudo apt-get autoremove php7*
二、刪除關聯
sudo find /etc -name "php" |xargs rm -rf
三、清除dept列表
sudo apt purge dpkg -l | grep php| awk '{print $2}' |tr "\n" " "
#四、檢查是否卸載乾淨(無返回就是卸載完成)
dpkg -l | grep php7.0
然後是安裝php7.0版本,因為php7.0已經從ubuntu中的套件管理移除了,所以我們需要重新加入授權
add-apt-repository ppa:ondrej/php
apt-get update
apt-get install php7.0
#透過上面的指令可以安裝php7.0版本,如果提示add-apt-repository 不存在可以執行下面的指令
apt-get install software-properties-common
經過以上的動作,我們就將php版本從php7.2降到php7.0了
親測有效