Last active
December 9, 2020 08:51
-
-
Save iamdylanngo/249698f3e8c75ba0692c545c5ff0853c to your computer and use it in GitHub Desktop.
Install php 7.2 in ubuntu 18.04 lts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// update ubuntu | |
sudo apt update | |
// install php 7.2 | |
sudo apt install php7.2-common php7.2-cli php7.2-fpm php7.2-opcache php7.2-gd php7.2-mysql php7.2-curl php7.2-intl php7.2-xsl php7.2-mbstring php7.2-zip php7.2-bcmath php7.2-soap | |
// check status php7.2 | |
sudo service php7.2-fpm status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment