이 글에서는 주로 PHP에서 엑셀 파일 데이터를 얻는 방법을 소개합니다. 매우 좋은 참조 값을 가지고 있습니다. 편집기로 살펴보겠습니다
간략한 소개입니다
1. PHPExcel 클래스를 다운로드하고 둘 다 파일이 있어야 합니다. 동일한 폴더에 있습니다.
require __DIR__ . './PHPExcel/IOFactory.php'; $PHPReader = new \PHPExcel_Reader_Excel2007(); //判断文件类型 if (!$PHPReader->canRead($filePath)) { $PHPReader = new \PHPExcel_Reader_Excel5(); if (!$PHPReader->canRead($filePath)) { echo 'no Excel'; return false; } } $PHPExcel = $PHPReader->load($filePath); /**读取excel文件中的第一个工作表*/ $currentSheet = $PHPExcel->getSheet(0); /**取得最大的列号*/ $allColumn = $currentSheet->getHighestColumn(); /**取得一共有多少行*/ $allRow = $currentSheet->getHighestRow(); /**从第1行开始输出*/ for ($currentRow = 1; $currentRow <= $allRow; $currentRow++) { /**从第A列开始输出*/ for ($currentColumn = 'A'; $currentColumn <= $allColumn; $currentColumn++) { $val = $currentSheet->getCellByColumnAndRow(ord($currentColumn) - 65, $currentRow)->getValue(); /**ord()将字符转为十进制数*/ $date[$currentRow - 1][] = $val; } } return $date;
위 내용은 이 글의 전체 내용이므로 모든 분들의 학습에 도움이 되길 바랍니다.
관련 추천:
PHP 달성 다음을 통해 MYSQL 문 클래스의 완전한 인스턴스 생성 매개변수_php 팁
위 내용은 Excel 파일 데이터를 얻기 위한 PHP 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!