Skip to content

Instantly share code, notes, and snippets.

@kbond
Created November 1, 2016 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kbond/9b6de79b51cacb2b1a9f2e0a6df70f58 to your computer and use it in GitHub Desktop.
Save kbond/9b6de79b51cacb2b1a9f2e0a6df70f58 to your computer and use it in GitHub Desktop.
Switch between PHP versions
if [ "$1" = "5" ]; then
sudo ln -sfn /usr/bin/php5.6 /etc/alternatives/php;
else
sudo ln -sfn /usr/bin/php7.0 /etc/alternatives/php;
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment