Switch between PHP versions using Homebrew
Let’s assume you have two PHP versions installed via Homebrew:
- PHP 8.1.1
- PHP 8.0.14
Your current PHP version is 8.1.1:
Now, you’re working on a project that’s not compatible with 8.1.1 so you want to use PHP 8.0.14.
Disable unwanted PHP version
Disable the formula that provides PHP 8.1.1.
Here, we’re unlinking php
which at the time of writing is the name of the formula that provides PHP 8.1.1.
Now, if you run php -v
, you’ll either get the PHP version that’s installed by default on macOS or a command not found error if your macOS doesn’t provide PHP by default.
Stop PHP-FPM
If using PHP-FPM, stop the PHP service.
Enable new PHP version
Make sure you’ve installed the formula containing your desired PHP version, then run:
Now, you should have PHP 8.0.14 enabled.
Start PHP-FPM
If using PHP-FPM, enable the PHP-FPM service.
If you want to switch back, you can repeat the same steps.
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment