php code:
Copy code The code is as follows:
var_dump($argv) ;
Shell/batch code
Copy code The code is as follows:
@echo off
:BEGIN
set /p input=any key to run or "c" exit:
if "%input%"=="c" goto END
goto RUN
:RUN
..binphp.exe -r "echo "rnrn";"
..binphp.exe run.php %input%
..binphp.exe -r " echo "rnrn";"
goto BEGIN
:END
exit
http://www.bkjia.com/PHPjc/327212.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327212.htmlTechArticlephp code: Copy the code as follows: ?php var_dump($argv); Shell/batch code Copy the code As follows: @echo off :BEGIN set /p input=any key to run or "c" exit: if "%input%"...