ubuntu安裝php7的方法:先執行【add-apt-repository ppa:ondrej/php】指令更換php來源;然後執行【apt-get -y install php7.2】指令安裝php即可。
Ubuntu上官方的來源
例如Ubuntu14.04 預設來源中的是PHP5.6.x、Ubuntu16.04 預設來源中的是PHP7.0.x
(影片教學推薦:linux影片教學)
透過第三方的來源來安裝
ppa:ondrej/ php 是較知名的PHP來源(目前維護php5.6,php7.0,php7.1,php7.2,php7.3)。下面就用這個來源來安裝自己想要的PHP版本。
使用ppa增加來源
sudo apt-get install python-software-properties sudo add-apt-repository ppa:ondrej/php sudo apt-get update
查看來源中PHP7.2版本
sudo apt list | grep php
不出意外,清單中已經包含你想要的PHP版本了
安裝PHP7.2
sudo apt-get -y install php7.2
推薦教學:linux教學
#以上是ubuntu怎麼安裝php7的詳細內容。更多資訊請關注PHP中文網其他相關文章!