从 php 调用 cron 作业的代码是什么?
我想从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不想启动 CRON 作业,而是启动后台命令。从 PHP 执行 shell,并向其传递如下命令:
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: