PHPEXCEL 使用小记
首先是使用PHP Reader 读取Excle内容: 复制代码 代码如下: require(“https://www.jb51.net/PHPExcel/Classes/PHPExcel.php”); $file = “D:\\datas.xlsx”; if(!file_exists($file)){ die(“no file found in {$file}”); } $datasReader = PHPExcel_IOFactory::load($file); $sheets = $datasReader->getAllSheets(); //如果有多个工作簿 $countSheets =
用户评论