从 php 调用 cron 作业的代码是什么?

发布于 2024-10-16 02:36:04 字数 376 浏览 1 评论 0原文

我想从 PHP 脚本中调用 cron 作业。我认为这是解决我的问题的正确且最有效的解决方案。

背景:

我想运行一个脚本,该脚本使用用户输入的密码,然后将其存储在具有单向加密的数据库中。

我还想确保即使用户离开我的网站整个脚本也能运行。

有两种可能性。
1.) 创建一个双向加密密码,我可以在晚上通过 cron 运行该密码(可能不安全,但如有任何建议,我们将不胜感激)。

2.) 使用 PHP 动态创建一个 cron 作业,以使用用户密码,然后再以一种方式加密存储它。

假设#1 不可能(或不安全),我如何使用 php 动态调用 cron 作业?如果这不是唯一的解决方案,我如何运行一个在用户离开我的页面时将完成运行的 PHP 文件?

I would like to call a cron job from within a PHP script. I am assuming this is the correct and most efficient solution to my problem.

Background:

I want to run a script that uses a user's inputted password before I store it in the database with 1 way encryption.

I also want to make sure the entire script runs even if the user leaves my site.

There are either two possibilities.
1.) Create a two way encrypted password that I can run later in the evening through cron (probably not secure, but any suggestions would be appreciated).

2.) Create a cron job on the fly using PHP to use the user's password before I store it in 1 way encryption.

Assuming #1 is not possible (or not secure), how would I call a cron job on the fly using php? If this isn't the only solution, how can i run a PHP file that will finish running if the user leaves my page?

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

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

发布评论

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

评论(1

摘星┃星的人 2024-10-23 02:36:04

您不想启动 CRON 作业,而是启动后台命令。从 PHP 执行 shell,并向其传递如下命令:

bash -c 'mycommand & exit';

You don't want to start a CRON job, but a background command. Execute a shell from PHP, and pass it a command like this:

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