ホームページ >バックエンド開発 >PHPチュートリアル >PHP による Excel のインポートとエクスポートの手順
PHP の Excel インポートおよびエクスポート メソッド
元の著者: Podcast on the Iceberg
この記事を見たとき、私たちは日常生活でいくつかを使用していますが、著者が Excel を書くときにすべてをリストしているわけではありません。私は pear ライブラリとパックヘッダーを使用して、csv はもちろんのこと、smarty を単に xml と置き換えるものも使用しました。ふふ。 (COMメソッドについては触れません。読みやすいものが多すぎるので、wpsを使ってワードを生成する記事なども書いています。)
しかし、私が読んでいるときは、1つしか使用していませんでした。具体的には何ですか?忘れました。戻ってコードを読む必要があります。借り物主義なので覚えられません。
元のアドレス: http://xinsync.xju.edu.cn/index.php/archives/3858
元のコンテンツ:
最近、プロジェクトのニーズにより、モジュールを開発する必要があります。システムを統合する 一部のデータは Excel にエクスポートされ、変更後にシステムにインポートされていました。機会があったのでこれについて調べてみましたので、いくつかまとめてみました。
基本的に、エクスポートされるファイルには次の 2 種類があります。
1: Excel に似た形式。これは、Excel には強い互換性があり、正しく開くことができるため、実際には従来の意味での Excel ファイルではありません。この種のファイルを変更して保存すると、通常、ファイルを Excel ファイルに変換するかどうかを尋ねるメッセージが表示されます。
利点: シンプル。
欠点: インポートに使用する場合、フォーマットを生成するのが難しく、対応するプログラムを自分で記述する必要があります。
2: Excel 形式。Excel に相当し、この方法で生成されたファイルは実際の Excel 形式に近くなります。
中国語のエクスポート時に文字化けが発生する場合は、文字列を gb2312 に変換してみてください。
たとえば、次のコードは $yourStr を utf-8 から gb2312 に変換します。
$yourStr = mb_convert_encoding( "gb2312 ″, “UTF-8″, $yourStr);
いくつかのメソッドの詳細を以下に示します。
1. PHP から Excel をエクスポート
1: 最初の推奨事項は、非常に人気のある PHPExcel (公式 Web サイト: http://www.codeplex.com) です。 /PHPExcel
インポートとエクスポートが可能で、office 2007 形式にエクスポートでき、2003 と互換性があります。
ダウンロードしたパッケージには、自分で学習できるドキュメントと例が含まれています。
コピーされた例:
PHP コード
<?php /** * PHPExcel * * Copyright (C) 2006 - 2007 PHPExcel * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * @category PHPExcel * @package PHPExcel * @copyright Copyright (c) 2006 - 2007 PHPExcel ( http://www.codeplex.com/PHPExcel) * @license http://www.gnu.org/licenses/lgpl.txt LGPL * @version 1.5.0, 2007-10-23 */ /** Error reporting */ error_reporting(E_ALL); /** Include path **/ set_include_path(get_include_path() . PATH_SEPARATOR . ‘../Classes/’); /** PHPExcel */ include ‘PHPExcel.php’; /** PHPExcel_Writer_Excel2007 */ include ‘PHPExcel/Writer/Excel2007.php’; // Create new PHPExcel object echo date(’H:i:s’) . ” Create new PHPExcel object\n”; $objPHPExcel = new PHPExcel(); // Set properties echo date(’H:i:s’) . ” Set properties\n”; $objPHPExcel->getProperties()->setCreator(”Maarten Balliauw”); $objPHPExcel->getProperties()->setLastModifiedBy(”Maarten Balliauw”); $objPHPExcel->getProperties()->setTitle(”Office 2007 XLSX Test Document”); $objPHPExcel->getProperties()->setSubject(”Office 2007 XLSX Test Document”); $objPHPExcel->getProperties()->setDescrīption(”Test document for Office 2007 XLSX, generated using PHP classes.”); $objPHPExcel->getProperties()->setKeywords(”office 2007 openxml php”); $objPHPExcel->getProperties()->setCategory(”Test result file”); // Add some data echo date(’H:i:s’) . ” Add some data\n”; $objPHPExcel->setActiveSheetIndex(0); $objPHPExcel->getActiveSheet()->setCellValue(’A1′, ‘Hello’); $objPHPExcel->getActiveSheet()->setCellValue(’B2′, ‘world!’); $objPHPExcel->getActiveSheet()->setCellValue(’C1′, ‘Hello’); $objPHPExcel->getActiveSheet()->setCellValue(’D2′, ‘world!’); // Rename sheet echo date(’H:i:s’) . ” Rename sheet\n”; $objPHPExcel->getActiveSheet()->setTitle(’Simple’); // Set active sheet index to the first sheet, so Excel opens this as the first sheet $objPHPExcel->setActiveSheetIndex(0); // Save Excel 2007 file echo date(’H:i:s’) . ” Write to Excel2007 format\n”; $objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel); $objWriter->save(str_replace(’.php’, ‘.xlsx’, __FILE__)); // Echo done echo date(’H:i:s’) . ” Done writing file.\r\n”;
<?php require_once ‘Spreadsheet/Excel/Writer.php’; // Creating a workbook $workbook = new Spreadsheet_Excel_Writer(); // sending HTTP headers $workbook->send(’test.xls’); // Creating a worksheet $worksheet =& $workbook->addWorksheet(’My first worksheet’); // The actual data $worksheet->write(0, 0, ‘Name’); $worksheet->write(0, 1, ‘Age’); $worksheet->write(1, 0, ‘John Smith’); $worksheet->write(1, 1, 30); $worksheet->write(2, 0, ‘Johann Schmidt’); $worksheet->write(2, 1, 31); $worksheet->write(3, 0, ‘Juan Herrera’); $worksheet->write(3, 1, 32); // Let’s send the file $workbook->close(); ?>
<?php // Send Header header(”Pragma: public”); header(”Expires: 0″); header(”Cache-Control: must-revalidate, post-check=0, pre-check=0″); header(”Content-Type: application/force-download”); header(”Content-Type: application/octet-stream”); header(”Content-Type: application/download”);; header(”Content-Disposition: attachment;filename=test.xls “); header(”Content-Transfer-Encoding: binary “); // XLS Data Cell xlsBOF(); xlsWriteLabel(1,0,”My excel line one”); xlsWriteLabel(2,0,”My excel line two : “); xlsWriteLabel(2,1,”Hello everybody”); xlsEOF(); function xlsBOF() { echo pack(”ssssss”, 0×809, 0×8, 0×0, 0×10, 0×0, 0×0); return; } function xlsEOF() { echo pack(”ss”, 0×0A, 0×00); return; } function xlsWriteNumber($Row, $Col, $Value) { echo pack(”sssss”, 0×203, 14, $Row, $Col, 0×0); echo pack(”d”, $Value); return; } function xlsWriteLabel($Row, $Col, $Value ) { $L = strlen($Value); echo pack(”ssssss”, 0×204, 8 + $L, $Row, $Col, 0×0, $L); echo $Value; return; } ?>
<?php header(”Content-Type: application/vnd.ms-execl”); header(”Content-Disposition: attachment; filename=myExcel.xls”); header(”Pragma: no-cache”); header(”Expires: 0″); /*first line*/ echo “hello”.”\t”; echo “world”.”\t”; echo “\t\n”; /*start of second line*/ echo “this is second line”.”\t”; echo “Hi,pretty girl”.”\t”; echo “\t\n”; ?>
<?PHP $filename = “c:/spreadhseet/test.xls”; $sheet1 = 1; $sheet2 = “sheet2″; $excel_app = new COM(”Excel.application”) or Die (”Did not connect”); print “Application name: {$excel_app->Application->value}\n” ; print “Loaded version: {$excel_app->Application->version}\n”; $Workbook = $excel_app->Workbooks->Open(”$filename”) or Die(”Did not open $filename $Workbook”); $Worksheet = $Workbook->Worksheets($sheet1); $Worksheet->activate; $excel_cell = $Worksheet->Range(”C4″); $excel_cell->activate; $excel_result = $excel_cell->value; print “$excel_result\n”; $Worksheet = $Workbook->Worksheets($sheet2); $Worksheet->activate; $excel_cell = $Worksheet->Range(”C4″); $excel_cell->activate; $excel_result = $excel_cell->value; print “$excel_result\n”; #To close all instances of excel: $Workbook->Close; unset($Worksheet); unset($Workbook); $excel_app->Workbooks->Close(); $excel_app->Quit(); unset($excel_app); ?>