PHP远程读取excel文件,怎么读取??
PHPExcel能远程读取excel文件吗?即读取其他服务器上的文件!
或者有没有其他好的方法能实现?
求方法...
[解决办法]
先用file_get_contents或者curl把文件取回来用phpexcel打开即可
[解决办法]
先把远程的弄到本地里。
最简单代码是:
file_put_contents('abc.xls',file_get_contents('http://www.xx.com/abc.xls'));
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);