PHP远程读取excel文件,怎么读取??
PHPExcel能远程读取excel文件吗?即读取其他服务器上的文件!
或者有没有其他好的方法能实现?
求方法...
------解决方案--------------------
先用file_get_contents或者curl把文件取回来用phpexcel打开即可
------解决方案--------------------
先把远程的弄到本地里。
最简单代码是:
<br /> file_put_contents('abc.xls',file_get_contents('http://www.xx.com/abc.xls'));<br />
public function read($sFileName)<br /> {<br /> // Check if file exists and is readable<br /> if(!is_readable($sFileName)) {<br /> throw new Exception("Could not open " . $sFileName . " for reading! File does not exist, or it is not readable.");<br /> }<br /> <br /> // Get the file data<br /> $this->data = file_get_contents($sFileName);<br />