- 相關(guān)推薦
PHP如何使用curl實(shí)現(xiàn)數(shù)據(jù)抓取
導(dǎo)語:PHP如何使用curl實(shí)現(xiàn)數(shù)據(jù)抓取呢?下面是小編給大家提供的實(shí)現(xiàn)代碼,大家可以參考閱讀,更多詳情請關(guān)注應(yīng)屆畢業(yè)生考試網(wǎng)。
<?php
define ( 'IS_PROXY', true ); //是否啟用代理
function async_get_url($url_array, $wait_usec = 0)
{
if (!is_array($url_array))
return false;
$wait_usec = intval($wait_usec);
$data = array();
$handle = array();
$running = 0;
$mh = curl_multi_init(); // 開啟多線程
$i = 0;
foreach($url_array as $url) {
$ch = curl_init();
if (IS_PROXY) {
//以下代碼設(shè)置代理服務(wù)器
//代理服務(wù)器地址http://www.cnproxy.com/proxy1.html !!Hong Kong, China的速度比較好
curl_setopt ($ch, CURLOPT_PROXY,'110.4.12.170:80' );
}
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // return don't print
curl_setopt($ch, CURLOPT_TIMEOUT, 30); //設(shè)置超時時間
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // 302 redirect
curl_setopt($ch, CURLOPT_MAXREDIRS, 7); //HTTp定向級別
curl_multi_add_handle($mh, $ch); // 把 curl resource 放進(jìn) multi curl handler 里
$handle[$i++] = $ch;
}
/* 執(zhí)行 */
do {
$mrc = curl_multi_exec($mh, $running);
if ($wait_usec > 0) /* 每個 connect 要間隔多久 */
usleep($wait_usec); // 250000 = 0.25 sec
} while ($mrc == CURLM_CALL_MULTI_PERFORM);
while ($running && $mrc == CURLM_OK) {
if (curl_multi_select($mh) != -1) {
do {
$mrc = curl_multi_exec($mh, $running);
} while ($mrc == CURLM_CALL_MULTI_PERFORM);
}
}
/* 讀取資料 */
foreach($handle as $i => $ch) {
$content = curl_multi_getcontent($ch);
$data[$i] = (curl_errno($ch) == 0) ? $content : false;
}
/* 移除 handle*/
foreach($handle as $ch) {
curl_multi_remove_handle($mh, $ch);
}
curl_multi_close($mh);
return $data;
}
$urls = array('http://map.baidu.com');
$re = async_get_url($urls);
echo $re[0];
?>
【PHP如何使用curl實(shí)現(xiàn)數(shù)據(jù)抓取】相關(guān)文章:
PHP中使用cURL實(shí)現(xiàn)Get和Post請求11-13
PHP實(shí)現(xiàn)抓取HTTPS內(nèi)容09-17
php使用curl發(fā)送json格式數(shù)據(jù)實(shí)例07-08
PHP中使用cURL實(shí)現(xiàn)Get和Post請求的方法10-30
PHP如何使用curl發(fā)送GET和POST請求09-10
php的curl實(shí)現(xiàn)get和post的代碼07-07
PHP中使用curl入門教程11-14
php使用curl訪問https示例分享09-15
php中的curl使用入門教程06-20