PHP 7.2 on Ubuntu

Ubuntu: 16.04

16.04 的版本中,PHP 版號只能到 7.0,如果想要裝 7.2 就必須手動加入 repository

# 加入 repository
sudo add-apt-repository ppa:ondrej/php
sudo apt update

Install

# Install PHP 7.2
sudo apt-get install php7.2

# Install PHP 7.2 modules
sudo apt install php-pear php7.2-curl php7.2-dev php7.2-gd php7.2-mbstring php7.2-zip php7.2-mysql php7.2-xml

Upgrade

sudo apt upgrade php

Notice:Ubuntu 18.04 的 PHP 預設版本已經是 7.2,因此就不需要另外新增 repository 了,直接安裝即可。

Categories: Linux