后台打开网页,显示页面已加载完成
当用户打开网页时,如何在服务器后台运行php脚本?
重要提示:用户不会注意到脚本何时完成并且不需要输出。
因此,用户通过访问网页来间接推动脚本,仅此而已。
How to run a php script in the background on the server when a user opens a webpage?
Important: The user does not note when the script finishes and DOES NOT NEED THE OUTPUT.
So the user nudges the script indirectly by visiting the webpage and that is all about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
唯一的方法是:
The only way would be to:
不确定我完全理解这个问题,但您可以在页面加载后进行 AJAX 调用,该调用调用 PHP 后端来加载页面或执行任何需要执行的操作,并返回返回到浏览器所需的任何数据。
Not sure I fully understand the question but you can make an AJAX call once the page is loaded, that calls the PHP backend that could load the page or do whatever it needs to do and return whatever data it needs to return back to the browser.