phpexcel が Excel ファイルを読み取る 2 つの方法
リリース: 2016-07-25 08:53:05
-
- /**
- *
- * @copyright 2007-2012 xiaoqiang.
- * @author xiaoqiang.wu
- * @version 1.01
- */
-
- error_reporting(e_all);
-
- date_default_timezone_set('asia/shanghai');
-
- /**phpexcel_iofactory*/
- require_once '。 ./classes/phpexcel/iofactory.php';
-
-
- // 前提条件を確認してください
- if (!file_exists("31excel5.xls")) {
- exit("not found 31excel5.xls.n");
- }
-
- $reader = phpexcel_iofactory::createreader('excel5'); //excel5 形式に設定します (excel97-2003 ブック)
- $phpexcel = $reader->load("31excel5.xls") //excel ファイルを読み込みます
- $ Sheet = $phpexcel->getsheet(0); // 最初のワークシートを読み取ります
- $highestrow = $sheet->gethighestrow(); // 合計行数を取得します
- $highestcolumm = $sheet-> ); // 列の合計数を取得します
- $highestcolumm= phpexcel_cell::columnindexfromstring($colsnum); // 文字列を次のように数値列に変換します: aa は 27 になります
- /**各セルのデータを読み取るループ*/
- for ( $row = 1; $row <= $highestrow; $row++){// 行数は行 1 から始まります
- for ($column = 0; $column < $highestcolumm; $column++) {//列数 列0から始まります
- $columnname = phpexcel_cell::stringfromcolumnindex($column);
- echo $columnname.$row.":".$sheet->getcellbycolumnandrow($column, $row)->gt; getvalue() ."
";
- }
- }
- ?>
-
コードをコピー
例 2、phpexcel が Excel ファイルを読み取るための合理化された方法。
- /**
- *
- * @copyright 2007-2012 xiaoqiang.
- * @author xiaoqiang.wu
- * @version 1.01
- */
-
- error_reporting(e_all);
-
- date_default_timezone_set('asia/shanghai');
-
- /**phpexcel_iofactory*/
- require_once ' ../classes/phpexcel/iofactory.php';
-
-
- // 前提条件を確認します
- if (!file_exists("31excel5.xls")) {
- exit("not found 31excel5.xls.n");
- }
-
- $reader = phpexcel_iofactory::createreader('excel5'); //excel5 形式に設定します (excel97-2003 ブック)
- $phpexcel = $reader->load("31excel5.xls"); //excel ファイルを読み込みます
- $sheet = $phpexcel->getsheet(0); // 最初のワークシートを読み取ります
- $highestrow = $sheet->gethighestrow(); // 合計行数を取得します
- $highestcolumm = $sheet-> ;gethighestcolumn (); // 合計列数を取得します
-
- /**各セルのデータを読み取るループ*/
- for ($row = 1; $row for ($column = 'a'; $column <= $highestcolumm; $column++) {//列数は列 a から始まります
- $dataset[] = $sheet->getcell($column .$row )->getvalue();
- echo $column.$row.":".$sheet->getcell($column.$row)->getvalue()."
";
- }
- }
- ?>
-
コードをコピー
上記は、phpexcel でファイルを読み込む方法と例です。最新バージョンの phpexcel をダウンロードするには、phpexcel 公式 Web サイトのアドレスにアクセスしてください: http:// phpexcel.codeplex.com/
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31