Created
April 7, 2023 01:30
-
-
Save musoftware/83554d85ea4b0c4ad4d46d13bf52b7f2 to your computer and use it in GitHub Desktop.
PHP Version with just Batch File to Access directly without Change Enviroment
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 | |
if "%1"=="" ( | |
echo No arguments provided. | |
exit /b | |
) | |
set args=%* | |
C:/tools/php72/php.exe %args% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment