Skip to content

Instantly share code, notes, and snippets.

View osadan's full-sized avatar

Ohad osadan

  • Israel
  • 05:54 (UTC -12:00)
  • LinkedIn in/osadan
View GitHub Profile
@osadan
osadan / switch-php-version.sh
Created January 1, 2023 10:40
script to switch between php version apache and cli
#!/bin/bash
echo "changeing from $2 to $4"
a2dismod php$2
a2enmod php$4
systemctl restart apache2
update-alternatives --set php /usr/bin/php$4
update-alternatives --set php /usr/bin/phar$4
update-alternatives --set phar.phar /usr/bin/phar.phar$4