《PHP實戰:php使用curl代理實現抓取數據的方法》要點:
本文介紹了PHP實戰:php使用curl代理實現抓取數據的方法,希望對您有用。如果有疑問,可以聯系我們。
PHP應用本文實例講述了php使用curl代理實現抓取數據的方法.分享給大家供大家參考,具體如下:
PHP應用
<?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) {
//以下代碼設置代理服務器
//代理服務器地址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); //設置超時時間
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 放進 multi curl handler 里
$handle[$i++] = $ch;
}
/* 執行 */
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應用更多關于PHP相關內容感興趣的讀者可查看本站專題:《php curl用法總結》、《PHP數組(Array)操作技巧大全》、《php排序算法總結》、《PHP常用遍歷算法與技巧總結》、《PHP數據結構與算法教程》、《php程序設計算法總結》、《PHP數學運算技巧總結》、《php正則表達式用法總結》、《PHP運算與運算符用法總結》、《php字符串(string)用法總結》及《php常見數據庫操作技巧匯總》
PHP應用希望本文所述對大家PHP程序設計有所幫助.
轉載請注明本頁網址:
http://www.snjht.com/jiaocheng/1909.html