当前位置:Gxlcms > PHP教程 > 施用PHPEXCEL读取网络文件

施用PHPEXCEL读取网络文件

时间:2021-07-01 10:21:17 帮助过:18人阅读

使用PHPEXCEL读取网络文件
读取本地文件没问题。换成读取web文件
Could not open xxx.xls for reading! File does not exist.

file_exists报错。 如果改成file_get_contents() 取出的数据又不正常。求解决方案

分享到:


------解决方案--------------------
他本身就是用 file_get_contents 的
        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);

人气教程排行