PHP下載遠程檔案的3種方法以及效能考慮

來源:互聯網
上載者:User
今天在做匯出Excel的時候,總是要測試匯出的Excel檔案,頻繁的下載和開啟,很麻煩 就想著寫段代碼一氣呵成  服務端匯出Excel==>下載Excel檔案到本地==>並開啟的操作。 這裡摘出PHP下載遠端檔案的方案,以備忘。其中第3種方法考慮到檔案過大時的效能問題。     3種方案: -rw-rw-r-- 1 liuyuan liuyuan 470 Feb 20 18:12 test1_fopen.php-rw-rw-r-- 1 liuyuan liuyuan 541 Feb 20 18:06 test2_curl.php-rw-rw-r-- 1 liuyuan liuyuan 547 Feb 20 18:12 test3_curl_better.php   方案1,適用於小檔案 直接使用fopen()/file_get_contents()擷取檔案流並用file_put_contents()寫入 <?php    //an example xls file form baidu wenku    $url = 'http://bs.baidu.com/wenku4/%2Fe43e6732eba84a316af36c5c67a7c6d6?sign=MBOT:y1jXjmMD4FchJHFHIGN4z:lfZAx1Nrf44aCyD6tJqJ2FhosLY%3D&time=1392893977&response-content-disposition=attachment;%20filename=%22php%BA%AF%CA%FD.xls%22&response-content-type=application%2foctet-stream';     $fp_input = fopen($url, 'r');    file_put_contents('./test.xls', $fp_input);     exec("libreoffice ./test.xls", $out, $status);?>   方案2:通過Curl擷取內容  <?php    //an example xls file form baidu wenku    $url = 'http://bs.baidu.com/wenku4/%2Fe43e6732eba84a316af36c5c67a7c6d6?sign=MBOT:y1jXjmMD4FchJHFHIGN4z:lfZAx1Nrf44aCyD6tJqJ2FhosLY%3D&time=1392893977&response-content-disposition=attachment;%20filename=%22php%BA%AF%CA%FD.xls%22&response-content-type=application%2foctet-stream';     $ch = curl_init($url);    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);    file_put_contents('./test.xls', curl_exec($ch));    curl_close($ch);     exec("libreoffice ./test.xls", $out, $status);?>   第1,2種方案存在一個問題,就是在寫入本地磁碟之前,檔案會被讀入記憶體中,那麼當檔案很大的時候,可能會超出記憶體而崩潰 即使你的記憶體設定的足夠的大,那這也是不別要的開銷 解決方案是:直接給CURL一個可寫的檔案流來讓它自己來解決這個問題(通過 CURLOPT_FILE選項),這樣就要先建立一個檔案指標給它。  <?php    //an example xls file form baidu wenku    $url = 'http://bs.baidu.com/wenku4/%2Fe43e6732eba84a316af36c5c67a7c6d6?sign=MBOT:y1jXjmMD4FchJHFHIGN4z:lfZAx1Nrf44aCyD6tJqJ2FhosLY%3D&time=1392893977&response-content-disposition=attachment;%20filename=%22php%BA%AF%CA%FD.xls%22&response-content-type=application%2foctet-stream';     $fp_output = fopen('./test.xls', 'w');    $ch = curl_init($url);    curl_setopt($ch, CURLOPT_FILE, $fp_output);    curl_exec($ch);    curl_close($ch);     exec("libreoffice ./test.xls", $out, $status);?>  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.