第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

請教下,如何在下面加入一個或三個遠程代理IP獲取遠程網(wǎng)頁數(shù)據(jù)?

請教下,如何在下面加入一個或三個遠程代理IP獲取遠程網(wǎng)頁數(shù)據(jù)?

PHP
猛跑小豬 2022-11-03 18:14:11
<?php##GET傳值 111.php?update=1#讀取http://網(wǎng)址/fenlei/2_1.html$d=file_get_contents('http://網(wǎng)址/fenlei/2_'.$_GET['update'].'.html');#如果讀取成功if($d){#如果匹配成功if(preg_match_all('#<th width="6%">狀態(tài)</th>(.*?)<div class="pages"><div class="pagelink#is',$d,$zd)){echo '<pre>';print_r($zd[0]);echo '</pre>';}}?>
查看完整描述

2 回答

?
郎朗坤

TA貢獻1921條經(jīng)驗 獲得超9個贊

不要用file_get_contents函數(shù)。
用snoopy的類,網(wǎng)上有snoopy.class.php,你自行百度查找。
snoopy的類可以設(shè)置$proxy_host參數(shù),設(shè)置代理主機,$proxy_port是代理主機端口。你下載一個下來,網(wǎng)上的教程很多,看看應(yīng)該明白。

查看完整回答
反對 回復(fù) 2022-11-08
?
犯罪嫌疑人X

TA貢獻2080條經(jīng)驗 獲得超4個贊

function curl_string ($url,$user_agent,$proxy){        $ch = curl_init();       curl_setopt ($ch, CURLOPT_PROXY, $proxy);       curl_setopt ($ch, CURLOPT_URL, $url);       curl_setopt ($ch, CURLOPT_USERAGENT, $user_agent);       curl_setopt ($ch, CURLOPT_COOKIEJAR, "c:\cookie.txt");       curl_setopt ($ch, CURLOPT_HEADER, 1);       curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);       curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);       curl_setopt ($ch, CURLOPT_TIMEOUT, 120);       $result = curl_exec ($ch);       curl_close($ch);       return $result; } $url_page "http://www.baidu.com";$user_agent "Mozilla/4.0";$proxy "http://192.11.222.124:8000";//這里是http代理$string = curl_string($url_page,$user_agent,$proxy);echo $string;

查看完整回答
反對 回復(fù) 2022-11-08
  • 2 回答
  • 0 關(guān)注
  • 112 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號