file_get_contents 下載一張20K的圖片資源特別慢,怎麼解決

來源:互聯網
上載者:User
$url = 'http://wx.qlogo.cn/mmopen/xu0fLo9waqKSTDO7j0kSO41O5Luq3LB6ozUvY4O7OsXUWNicB49fBs8nGYzoqcwGDARQZHpVuic4JSDngEVjVo10BoiaPd0iciaOb/0';$content = file_get_contents($url);file_put_contents('uploads/a.jpg', $content);

回複內容:

$url = 'http://wx.qlogo.cn/mmopen/xu0fLo9waqKSTDO7j0kSO41O5Luq3LB6ozUvY4O7OsXUWNicB49fBs8nGYzoqcwGDARQZHpVuic4JSDngEVjVo10BoiaPd0iciaOb/0';$content = file_get_contents($url);file_put_contents('uploads/a.jpg', $content);

$url 這一行上面增加 ini_set('default_socket_timeout', 1); 設定一下 預設逾時時間.

你所請求的這個圖片, 對方的伺服器支援 Connection: keep-alive, 所以 PHP 在接收到資料之後, 維持了一段時間, 一直等到逾時, 才返回, 所以 在設定 預設逾時時間的情況下 會比較慢.

你可以用同樣的代碼(不使用ini_set),擷取這個URL http://sfault-avatar.b0.upaiyun.com/160/666/1606661144-55fe2a534b79f_huge256, 很快就回來了, 因為對方告訴了PHP, 在輸出完資料接收完之後, 串連就可以關閉了.

function curl_file_get_contents($durl){   $ch = curl_init();   curl_setopt($ch, CURLOPT_URL, $durl);   curl_setopt($ch, CURLOPT_TIMEOUT, 2);   curl_setopt($ch, CURLOPT_USERAGENT, _USERAGENT_);   curl_setopt($ch, CURLOPT_REFERER,_REFERER_);   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);   $r = curl_exec($ch);   curl_close($ch);   return $r; }$url = 'http://wx.qlogo.cn/mmopen/xu0fLo9waqKSTDO7j0kSO41O5Luq3LB6ozUvY4O7OsXUWNicB49fBs8nGYzoqcwGDARQZHpVuic4JSDngEVjVo10BoiaPd0iciaOb/0';$a = curl_file_get_contents($url);file_put_contents('uploads/2.jpg', $a);

這樣子會很快。。。。

這個應該是網路原因吧,就下載一個圖片,用什麼方法根本感覺不到差別

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.