Skip to content

Instantly share code, notes, and snippets.

@luisfc
Last active May 23, 2017 04:58
Show Gist options
  • Save luisfc/c030a7e11c750063ead641a70d9fed16 to your computer and use it in GitHub Desktop.
Save luisfc/c030a7e11c750063ead641a70d9fed16 to your computer and use it in GitHub Desktop.
Switch PHP version
From php5.6 to php7.0:
Apache:
sudo a2dismod php5.6 ; sudo a2enmod php7.0 ; sudo service apache2 restart
CLI:
sudo update-alternatives --set php /usr/bin/php7.0
From php7.0 to php5.6:
Apache:
sudo a2dismod php7.0 ; sudo a2enmod php5.6 ; sudo service apache2 restart
CLI:
sudo update-alternatives --set php /usr/bin/php5.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment