この記事では主にphpでエクセルファイルのデータを取得する方法を紹介します。非常に良い基準値を持っています。エディターで見てみましょう
実装はとても簡単です
1. PHPExcel クラスをダウンロードします。両方とも PHPExcel.php というファイルが必要です。レベルディレクトリ内にあります
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 ステートメント クラスの完全なインスタンスを生成するparameters_php のヒント
以上がExcelファイルデータを取得するためのPHP実装の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。