PHPでプロキシリストへのリンクをヒットするコードを設定しました。ヒットは成功裏に生成されます。私はhtmlで出力を得ています。しかし、このhtmlはブラウザ上で適切に表示されていません。私はプロキシから返される正確なHTMLを必要とします。PHPでhtml形式のcurl出力を表示するには
を:すべてのボディはここで私はあなたが使用する機能のドキュメントへのシンプルな外観は、あなたの質問に答えただろう
<?php
$curl = curl_init();
$timeout = 30;
$proxies = file("proxy.txt");
$r="https://www.abcdefgth.com";
// Not more than 2 at a time
for($x=0;$x<2000; $x++){
//setting time limit to zero will ensure the script doesn't get timed out
set_time_limit(30);
//now we will separate proxy address from the port
//$PROXY_URL=$proxies[$getrand[$x]];
echo $proxies[$x];
curl_setopt($curl, CURLOPT_URL,$r);
curl_setopt($curl , CURLOPT_PROXY , preg_replace('/\s+/', '',$proxies[$x]));
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5");
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($curl, CURLOPT_REFERER, "http://google.com/");
$text = curl_exec($curl);
echo "Hit Generated:";
}
?>
__proper__の形式がわかりません。だから、__no__、誰も考えていない。 –
<?phpの直後に 'header(" content-type:text/plain; charset = utf8 ");'を追加します。 – hanshenrik