Windows 上的 PHP cronjob 带参数和管道

发布于 2024-10-12 13:50:33 字数 829 浏览 2 评论 0原文

我想通过 Windows 上的任务计划程序运行 PHP 文件。 除了传入参数之外,所有内容都会运行。

运行:

cmd /CC:\php\php.exe “C:\cron\cronrun.php”>> "C:\cron\log\cronrun.log" 2>&1

这没有运行:

cmd /CC:\php\php.exe “C:\cron\cronrun.php”--运行>> "C:\cron\log\cronrun.log" 2>&1

如何运行包含参数的作业?

感谢您的帮助。
-lony

来源:

I want to run a PHP file via Task Scheduler on Windows.
Everything runs except a parameter comes in.

This runs:

cmd /C C:\php\php.exe
"C:\cron\cronrun.php" >>
"C:\cron\log\cronrun.log" 2>&1

This is not running:

cmd /C C:\php\php.exe
"C:\cron\cronrun.php" --run >>
"C:\cron\log\cronrun.log" 2>&1

How can I run a job which includes an argument?

Thanks for help.
-lony

Sources:

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

被翻牌 2024-10-19 13:50:33

尝试在 --run 之前添加 --,如下所示:

cmd /C C:\php\php.exe "C:\cron\cronrun.php" -- --run >> "C:\cron\log\cronrun.log" 2>&1

线索在使用消息中:

$ php --help
Usage: php [options] [-f] <file> [--] [args...]

...

  args...          Arguments passed to script. Use -- args when first argument
                   starts with - or script is read from stdin

Try adding -- before the --run like this:

cmd /C C:\php\php.exe "C:\cron\cronrun.php" -- --run >> "C:\cron\log\cronrun.log" 2>&1

The clue is in the usage message:

$ php --help
Usage: php [options] [-f] <file> [--] [args...]

...

  args...          Arguments passed to script. Use -- args when first argument
                   starts with - or script is read from stdin
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文