通过带有整数的.bat文件运行PHP脚本。恩。 ?test.php的分钟= 1&安培;最大= 10

时间:2015-04-14 08:20:11

标签: php batch-file

就像标题所说的那样。

我使用bat文件来运行计划任务。当我在最后添加Min / max时,我很难让它工作。

有办法吗?

1 个答案:

答案 0 :(得分:0)

使用类似

的语法运行命令
php test.php --min=1 --max=10

并使用脚本中的getopt()函数来阅读maxmin

的值
$shortopts  = "";
$longopts  = array(
    "max:",
    "min:",
);
$options = getopt($shortopts, $longopts);

var_dump($options['min'], $options['max']);