1
我使用這個下面多請求的功能,有時會出現問題,,在PHP - 捲曲多請求超時
do { curl_multi_exec($mh, $running); } while ($running > 0);
循環似乎無窮無盡,達到我的PHP執行限制。 我認爲它與DNS查找有關,所以我現在直接調用IP地址。
但是,這個問題可悲的仍然有時發生......有沒有辦法爲每個句柄設置一個超時以避免無限循環?我還能做些什麼來解決這個問題?
非常感謝!
function multiRequest($data, $options = array()) { // array of curl handles $curly = array(); // data to be returned $result = array(); // multi handle $mh = curl_multi_init(); // loop through $data and create curl handles // then add them to the multi-handle foreach ($data as $id => $d) { $curly[$id] = curl_init(); $url = (is_array($d) && !empty($d['url'])) ? $d['url'] : $d; curl_setopt($curly[$id], CURLOPT_URL, $url); curl_setopt($curly[$id], CURLOPT_HEADER, 0); curl_setopt($curly[$id], CURLOPT_RETURNTRANSFER, 1); // post? if (is_array($d)) { if (!empty($d['post'])) { curl_setopt($curly[$id], CURLOPT_POST, 1); curl_setopt($curly[$id], CURLOPT_POSTFIELDS, $d['post']); } } // extra options? if (!empty($options[$id])) { curl_setopt_array($curly[$id], $options[$id]); } curl_multi_add_handle($mh, $curly[$id]); } // execute the handles $running = null; do { curl_multi_exec($mh, $running); } while ($running > 0); // get content and remove handles foreach($curly as $id => $c) { $result[$id] = curl_multi_getcontent($c); curl_multi_remove_handle($mh, $c); } // all done curl_multi_close($mh); return $result; }
謝謝,我不得不更新我的libcurl版本以使其工作:-)。 – heuri 2011-06-17 14:37:43