我正在尝试在后台运行一个php脚本,该脚本是从另一个php文件中调用的:
$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run("php -f admin_mailer/ideamailer.class.php arg1 arg2 arg3", 0, false);
文件运行...我的问题是参数没有传递。我在执行的文件中有print_r($ argv),只显示' 1'。传递参数的正确方法是什么?我在Windows服务器上。