Home  >  Article  >  Operation and Maintenance  >  How to install php7 on ubuntu

How to install php7 on ubuntu

王林
王林Original
2020-10-23 14:49:142019browse

How to install php7 on ubuntu: First execute the [add-apt-repository ppa:ondrej/php] command to change the php source; then execute the [apt-get -y install php7.2] command to install php.

How to install php7 on ubuntu

Official source on Ubuntu

For example, the default source of Ubuntu14.04 is PHP5.6.x, the default source of Ubuntu16.04 The one is PHP7.0.x

(Video tutorial recommendation: linux video tutorial)

Installation through third-party sources

ppa:ondrej/ php is a relatively well-known PHP source (currently maintaining php5.6, php7.0, php7.1, php7.2, php7.3). Next, use this source to install the PHP version you want.

Use ppa to add the source

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ondrej/php
sudo apt-get update

View the PHP7.2 version in the source

sudo apt list | grep php

As expected, the PHP version you want is already included in the list

Install PHP7.2

sudo apt-get -y install php7.2

Recommended tutorial: linux tutorial

The above is the detailed content of How to install php7 on ubuntu. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn