1. 程式人生 > >Ubuntu16.04 安裝 PHP7.2

Ubuntu16.04 安裝 PHP7.2

Ubuntu上官方的源

  • 比如 Ubuntu14.04 預設源中的是 PHP5.6.x、Ubuntu16.04 預設源中的是 PHP7.0.x

通過第三方的源來安裝

  • ppa:ondrej/php 是一個比較知名的PHP源(目前維護php5.6,php7.0,php7.1,php7.2,php7.3)。下面就用這個源來安裝自己想要的PHP版本。

Ubuntu16.04 上安裝 PHP7.2

  • 使用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