- Add directory C:\wamp64\bin\php to windows path
- Download bat files and placed to C:\wamp64\bin\php
Last active
August 4, 2022 11:26
-
-
Save mbpcoder/ea599f2c1be2e7a5b50873438349f029 to your computer and use it in GitHub Desktop.
Multiple PHP Version in CLI Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
path=%path%;C:\wamp64\bin\php\php7.4.9 | |
php %* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
path=%path%;C:\wamp64\bin\php\php8.0.10 | |
php %* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment