如何在CakePHP中调用async函数并等待响应

时间:2017-04-18 09:09:51

标签: cakephp-2.0

$url = $serverHttpHost."/apis/xyz";
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, http_build_query($orderData));
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, false);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT ,3);
curl_setopt($ch,CURLOPT_TIMEOUT, 20);
$response = curl_exec($ch); 
curl_close ($ch);

我应该如何在异步模式下调用该函数,因为我们需要在后台模式下运行需要花费太多时间的脚本。

0 个答案:

没有答案