bat 执行php文件
程序员文章站
2022-04-09 10:18:41
...
这篇文章主要介绍了bat 执行php文件,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
1.bat 文件内容为:
%~dp0:1.bat文件所在目录
%*:所传参数
set curDerectory=%~dp0 php.exe "%curDerectory%1.php" %*
1.php文件为:
<?php $rawParams = $_SERVER['argv']; print_r($rawParams); ?>
cmd运行1.bat为:
1.bat 22 33 44
输出为:
相关推荐:
以上就是bat 执行php文件的详细内容,更多请关注其它相关文章!
下一篇: Python 迭代器工具包【推荐】