web-dev-qa-db-ja.com

変数にcURL表示出力文字列を保存PHP

彼らはカールリクエストの出力をphp変数に保存するオプションですか?

$ resultのみを保存する場合、1または何も得られないため

<?php
$url='http://icanhazip.com';
$proxy=file ('proxy.txt');
$useragent='Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)';

for($x=0;$x<count($proxy);$x++)
{
$ch = curl_init();
//you might need to set some cookie details up (depending on the site)
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
curl_setopt($ch, CURLOPT_URL,$url); //set the url we want to use
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 0);
curl_setopt($ch, CURLOPT_PROXY, $proxy[$x]);
curl_setopt($ch, CURLOPT_USERAGENT, $useragent); //set our user agent
$result= curl_exec ($ch); //execute and get the results
print $result; //display the reuslt
$datenbank = "proxy_work.txt"; 
$datei = fopen($datenbank,"a");
fwrite($datei, $result);  
fwrite ($datei,"\r\n"); 
curl_close ($ch);
}
?>
18
The Masta

CURLOPT_RETURNTRANSFER オプションをtrueに設定する必要があります。

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
29
poncha

CurlオプションCURLOPT_RETURNTRANSFERの設定を追加する必要があります。

curl_setopt($ ch、CURLOPT_RETURNTRANSFER、1);

これにより、出力を回避してプログラムを実行し続けることができます。