duanpengya7074 2014-02-03 01:53
浏览 55
已采纳

PHP / cURL脚本请求另一个PHP脚本并在响应之前退出

I'd like a browser-initiated PHP script A on Server A to send a cURL request for a PHP resource B located on Server B, but not wait for a reply (it's only supposed to start script B and die). Will script B abort if it notices that the requesting script A has exited? If so, can this be overcome simply by including

ignore_user_abort(true);

in script B, just like for browser requests? What needs to be done to ensure script B goes to completion? Assume safe mode is enabled: no forking, daemons, etc, that's why I'm taking two separate servers.

  • 写回答

1条回答 默认 最新

  • duan010167787 2014-02-03 02:15
    关注

    Yes, if ignore_user_abort() is set to true on script B, then script B will continue to run, regardless of what A did. However, it is still at the mercy of the *max_execution_time* setting

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?