运行 cron 作业将多个参数传递给同一个 PHP 脚本

发布于 2024-11-09 15:47:07 字数 100 浏览 2 评论 0原文

我需要自动执行对单个 PHP 脚本的日常调用,但每次传递不同的参数(大约 30 个)。除了为每次调用脚本创建一个单独的 cron 之外,是否有一种巧妙的方法来处理这个问题?感谢您的指点。

I need to automate daily calls to a single PHP script but passing a different parameter each time (around 30). Is there a neat way to handle this, other than creating an individual cron for each call to the script? THanks for any pointers.

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

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

发布评论

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

评论(3

梦里兽 2024-11-16 15:47:07

您可以使用不同的命令行参数运行该脚本。检查 getopt 函数或 $argv/$argc 变量。

You can run the script using different command line parameters. Check getopt function or $argv/$argc variables.

要走干脆点 2024-11-16 15:47:07

$argv 数组将保存多个参数:

http://php.net/manual/ en/reserved.variables.argv.php

<?php
var_dump( $argv );
?>

示例用法:

$ php cli.php param1 param2 param3

输出:

array(4) {
  [0]=>
  string(7) "cli.php"
  [1]=>
  string(6) "param1"
  [2]=>
  string(6) "param2"
  [3]=>
  string(6) "param3"
}

The $argv array will hold multiple parameters:

http://php.net/manual/en/reserved.variables.argv.php

<?php
var_dump( $argv );
?>

Example usage:

$ php cli.php param1 param2 param3

Output:

array(4) {
  [0]=>
  string(7) "cli.php"
  [1]=>
  string(6) "param1"
  [2]=>
  string(6) "param2"
  [3]=>
  string(6) "param3"
}
如梦初醒的夏天 2024-11-16 15:47:07

您可以创建一个parameters.txt 文件,其中包含所有30 个左右的参数,并用换行符分隔。然后创建一个单独的 counter.txt 文件,其中包含 0。

读取 counter.txt 文件。读取参数文件,按换行符将其分割,然后访问计数器文件指示的索引位置以获取参数。

(此处是您的文件逻辑)

增加计数器,将新计数器写入 counter.txt(覆盖它),然后继续该过程,一旦达到上限,就重置计数器。

You could create a parameters.txt file with all 30 or so parameters separated by line breaks. Then create a separate counter.txt file with a 0 in it.

Read the counter.txt file. Read the parameters file, split it by line breaks, and then access the index location indicated by the counter file to get your parameter.

(your file logic here)

Increment the counter, write the new counter to counter.txt (overwrite it), and continue the process, resetting the counter once you have reached your upper limit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文