Created
August 27, 2016 02:16
-
-
Save Shellbye/71ab5e04b5fc8ba37af16ee9b6cd385a to your computer and use it in GitHub Desktop.
install php5 on ubuntu 1604
This file contains hidden or 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
| # ref http://askubuntu.com/questions/756181/installing-php-5-6-on-xenial-16-04 | |
| dpkg -l | grep php| awk '{print $2}' |tr "\n" " " | |
| sudo add-apt-repository ppa:ondrej/php | |
| apt-get update | |
| apt-get install php5.6 | |
| php -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment