Created
February 18, 2020 08:56
-
-
Save xZero707/a2f8ba629b4d16907c7a4143bb4edbf5 to your computer and use it in GitHub Desktop.
Install PHP on Ubuntu 18.04 from ppa:ondrej/php
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
# This will install PHP with enough extensions to be able to run most of the applications | |
# More might be needed depending of your app. | |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt update | |
# Replace php7.4 with your arbitary version, eg. php7.1 | |
sudo apt -y install php7.4 php7.4-{common,json,cli,curl,gd,mysqli,mysqlnd,intl,imagick,gettext,sqlite,apcu,xmlwriter,simplexml} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment