就像标题所说的那样。
我使用bat文件来运行计划任务。当我在最后添加Min / max时,我很难让它工作。
有办法吗?
答案 0 :(得分:0)
使用类似
的语法运行命令php test.php --min=1 --max=10
并使用脚本中的getopt()函数来阅读max
和min
$shortopts = "";
$longopts = array(
"max:",
"min:",
);
$options = getopt($shortopts, $longopts);
var_dump($options['min'], $options['max']);