How to install the latest stable PHP 7.2 in Ubuntu Linux.

By | April 7, 2018

In this post I’m going to show you how to install PHP 7.2 in Ubuntu 16.04 system.

PHP7.2 banner

PHP7.2

Beginning with Ubuntu 16.04, PHP 7 has replaced PHP 5 as the default PHP version in the Ubuntu software repository. And can be installed by simply using the command:

sudo apt-get install php7

But PHP 7.2 is the latest stable version in the line of PHP7 series (as at the time of writing this article). And that is what is going to install in this article. The PHP 7 series of versions are loaded with a lot of attractive features (compared to PHP 5.x) that many long time PHP developers have long desired. This include but not limited to;

– Increased speed

Security and bug fixes.

New/Improved syntax types. Etc.

To install in Ubuntu follow the steps outlined below;

#1: Add the PPA to your system:

 

Sudo add-apt-repository -y ppa:ondrej/php

 

READ: Learn more about (PPA) here.

 

#2: Update your system software repository:

sudo apt-get update

 

#3: Install PHP7:

 

sudo apt-get install php7.2

 

You can confirm that it was installed in your system using the following command:

php -v

 

OPTIONAL: List (view) available PHP modules for PHP7.2

You can check the modules that are available for your version of PHP using the command:

 

apt-cache pkgnames | grep php7.2

 

READ: You can also learn how to install a full LAMP (Apache, MySQL, PHP on Linux) stack.

 

Happy Linux’NG!


NEVER MISS AN UPDATE



I agree to have my personal information transfered to MailChimp ( more information )

Join over 10,000 visitors to receive Open Source tips, trick, news, tutorials, programming and more.

We hate spam. Your email address will not be sold or shared with anyone else.

ALEXANDER OMOROKUNWA
MUST READ  5 reasons why a Nigerian might not use Linux

Tell us what you think

This site uses Akismet to reduce spam. Learn how your comment data is processed.