运行 cron 作业将多个参数传递给同一个 PHP 脚本
我需要自动执行对单个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用不同的命令行参数运行该脚本。检查 getopt 函数或
$argv
/$argc
变量。You can run the script using different command line parameters. Check getopt function or
$argv
/$argc
variables.$argv 数组将保存多个参数:
http://php.net/manual/ en/reserved.variables.argv.php
示例用法:
输出:
The $argv array will hold multiple parameters:
http://php.net/manual/en/reserved.variables.argv.php
Example usage:
Output:
您可以创建一个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.