phpexcel 读取数据

来源:互联网 发布:初学数控车床编程教程 编辑:程序博客网 时间:2024/06/13 03:10


http://extjs.org.cn/fatjames/archives/379



require_once '/home/PHPExcel_1.8.0/PHPExcel/IOFactory.php';                $reader = PHPExcel_IOFactory::createReader('Excel2007'); //设置以Excel5格式(Excel97-2003工作簿)        $PHPExcel = $reader->load("/home/all.xlsx"); // 载入excel文件                $sheet = $PHPExcel->getSheet(0); // 读取第一個工作表        $highestRow = $sheet->getHighestRow(); // 取得总行数        $highestColumm = $sheet->getHighestColumn(); // 取得总列数                /** 循环读取每个单元格的数据 */        for ($row = 2; $row <= $highestRow; $row++){//行数是以第1行开始            for ($column = 'A'; $column <= $highestColumm; $column++) {//列数是以A列开始                $dataset[] = $sheet->getCell($column.$row)->getValue();                //echo $column.$row.":".$sheet->getCell($column.$row)->getValue()."<br />";                echo $sheet->getCell($column.$row)->getValue()."  ";                            }            exit('!');        }        


0 0