別のサイトから電話番号を抽出するクローラー プログラムを作成したいと考えて2000 links
いcurl and file_get_contents
ます。520 error occurs
.これを行う他の方法はありますか? 誰でも私を助けてください...私のコードは
$original_file = @file_get_contents($url);
OR
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, $url);
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$original_file = curl_exec($ch);