1. 程式人生 > >PHP 伺服器無法保證在五秒內處理並回復 可呼叫客服介面來非同步回覆(微信)

PHP 伺服器無法保證在五秒內處理並回復 可呼叫客服介面來非同步回覆(微信)

立即返回(非同步執行)

 ignore_user_abort(true);
 echo 'success'; // send the response
 header('Connection: close');
 header('Content-Length: ' . ob_get_length());
 ob_end_flush();
 ob_flush();
 flush();

//以下為呼叫客服訊息介面,回覆使用者訊息的程式碼