PHP 保持进程存活

发布于 2024-12-05 11:16:25 字数 218 浏览 0 评论 0原文

我正在努力寻找解决方案来解决用户访问 page1.php 并且该页面包含另一个 page2.php 需要花费大量时间(约 5 分钟)来完成所有计算但计算结果并不需要显示给用户。因此,让用户等待其完成是不值得的。

我正在寻找一种解决方案,用户应访问 page1.php,并在进行一些必要的检查列表后,它应向用户显示其请求处理已开始的消息。在后端 page2.php 应该完成其所有工作,即使用户应该关闭窗口。

I am struggling to find a solution to a problem where a user visits to page1.php and this page include another page2.php which takes lot of time (~5 minute) to complete all the computation but the results of the computation doesn't need to be displayed to user. So, its not worth to make the user to wait for its completion.

I am looking for a solution where user should visit page1.php and after some necessary check listing it should display message to the user that his request processing has started. And on the back end page2.php should complete all of its working even if user should have closed window.

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

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

发布评论

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

评论(2

夏夜暖风 2024-12-12 11:16:26

将实际计算卸载到独立进程(cron 作业或自定义守护进程)并实现某种作业队列(例如,使用数据库)。因此,您的前端(PHP 网站)会将数据添加到数据库表中,然后定期检查它(例如,通过读取“进度”列或其他内容);处理守护进程将在表中查找是否有任何新作业,如果有,则开始处理它们,并根据需要更新表。

Offload the actual computation to a standalone process (a cron job, or a custom daemon) and implement some sort of job queue (e.g., using a database). So your front-end (the PHP website) would add the data to a database table, and then periodically check back on it (e.g. by reading a 'progress' column or something); the processing daemon would look in the table to see if there are any new jobs, and if so, start processing them, updating the table as needed.

单身情人 2024-12-12 11:16:25

查看此链接 如何发出异步 GET 请求在 PHP 中?
如果您想在请求页面上显示结果,请使用 file_get_contents

check out this link How do I make an asynchronous GET request in PHP?
if you would like to get the result displayed on the request page, use file_get_contents

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