Skip to content

Instantly share code, notes, and snippets.

@alvarosacari
Last active April 15, 2021 02:49
Show Gist options
  • Save alvarosacari/1db36749daea0d9c3303f86f7f44bf0e to your computer and use it in GitHub Desktop.
Save alvarosacari/1db36749daea0d9c3303f86f7f44bf0e to your computer and use it in GitHub Desktop.
Have several versions of php in ubuntu

Have serveral versions of php in ubuntu

Add reporsitory

sudo add-apt-repository ppa:ondrej/php

This repository contains all the released versions of PHP till date.

update dependencies and install

sudo apt update
sudo apt install php5.6
sudo apt install php7.0
sudo apt install php7.2

Switching between installed PHP versions

sudo update-alternatives --config php

restart apache

sudo systemctl restart apache2

Check php version

php -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment