Quick mac switching for multiple php versions under mac
Preface
Php is an open-source language widely accepted to quickly build a web page. Through continuous development, many open-source php systems are available to meet the site requirements of most users. Since the birth of php in early 1995, multiple versions already exist, and each version belongs to a series. Most website Source Code cannot be compatible with each other, so it is very practical to switch the PHP version quickly.
Note: All php versions are required to be installed by brew.
I. Use brew to install php multi-version
# Brew install php56 # brew install php70
Ii. Install the switch Tool
# Brew install php-version # source $ (brew -- prefix php-version)/php-version.sh
3. view all installed versions
# Php-version
4. Switch versions
# Php-version 5.6.5
Summary
The above is all about this article. I hope it will help you learn and work conveniently. If you have any questions, please leave a message. Thank you for your support.