Last active
May 23, 2017 04:58
-
-
Save luisfc/c030a7e11c750063ead641a70d9fed16 to your computer and use it in GitHub Desktop.
Switch PHP version
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
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