Skip to content

Commit c8c4a7e

Browse files
author
Flavius12
committed
Create phartools.bat
1 parent 6776938 commit c8c4a7e

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

phartools.bat

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@echo off
2+
3+
::Specify the PHP binaries path here
4+
set PHP_PATH=bin\php
5+
::Specify the main PHP executable here
6+
set PHP_EXE=php.exe
7+
8+
if exist "%PHP_PATH%\%PHP_EXE%" (
9+
"%PHP_PATH%\%PHP_EXE%" phartools.php %*
10+
) else (
11+
echo PHP Executable not found. Please set the right PHP path.
12+
)

0 commit comments

Comments
 (0)