You can use below command lines to switch between two PHP version.
E.g.
I want to switch PHP Version
from 7.1
to 7.2
we can use below command
sudo a2dismod php7.1 && sudo update-alternatives --set php /usr/bin/php7.2 && sudo a2enmod php7.2 && sudo service apache2 restart
a2dismod
is use to disable the current php version and a2enmod
is use to enable the version