PHP遠程讀取excel檔案,如何讀取?

來源:互聯網
上載者:User
PHP遠程讀取excel檔案,怎麼讀取??
PHPExcel能遠程讀取excel檔案嗎?即讀取其他伺服器上的檔案!

或者有沒有其他好的方法能實現?

求方法...

------解決方案--------------------
先用file_get_contents或者curl把檔案取回來用phpexcel開啟即可
------解決方案--------------------
先把遠端弄到本地裡。
最簡單代碼是:

file_put_contents('abc.xls',file_get_contents('http://www.xx.com/abc.xls'));

------解決方案--------------------
PHPExcel 通過 PHPExcel_Shared_OLERead 類的 read 方法讀取檔案
但 read 方法裡使用了 is_readable 函數來確認檔案是否存在,而 is_readable 不能作用於 url
所以不可直接遠程讀取
但若繞過 is_readable 函數的話,就是可以的
        public function read($sFileName)
{
// Check if file exists and is readable
if(!is_readable($sFileName)) {
throw new Exception("Could not open " . $sFileName . " for reading! File does not exist, or it is not readable.");
}

// Get the file data
$this->data = file_get_contents($sFileName);

------解決方案--------------------
直接注釋代碼就好了嘛
或者試用tempnam產生臨時檔案,記得要刪
  • 聯繫我們

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