php 读取excel表格中的内容
Posted Abner3721
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 读取excel表格中的内容相关的知识,希望对你有一定的参考价值。
<?php /** * excel表格内容在网页中显示 * * 首先需要下载PHPExcel 工具包 * 网址: http://phpexcel.codeplex.com/releases/view/119187 * * @copyright 2007-2012 Xiaoqiang. * @author Xiaoqiang.Wu <[email protected]> * @version 1.01 */ header("Content-type: text/html; charset=utf-8"); error_reporting(E_ALL); set_time_limit(0);//设置不超时 @ini_set(‘memory_limit‘, ‘512M‘);//设置PHP能使用的内存大小 date_default_timezone_set(‘Asia/ShangHai‘); /** PHPExcel_IOFactory */ require_once ‘./PHPExcel/IOFactory.php‘; $filename = ‘test2.xls‘; // Check prerequisites if (!file_exists($filename)) { exit("not found 31excel5.xls.\n"); } $reader = PHPExcel_IOFactory::createReader(‘Excel5‘); //设置以Excel5格式(Excel97-2003工作簿) $PHPExcel = $reader->load($filename); // 载入excel文件 $sheet = $PHPExcel->getSheet(0); // 读取第一個工作表 $highestRow = $sheet->getHighestRow(); // 取得总行数 $highestColumm = $sheet->getHighestColumn(); // 取得总列数 $str = ‘‘; $str .= ‘<table border="1" cellspacing="0" bordercolor="#eeeeee" cellpadding="5" width="100%">‘; //按照excel表格格式输出A-Z列 $str .= ‘<tr>‘; $str .= ‘<td></td>‘; for($column = ‘A‘; $column <= $highestColumm; $column++) { $str .= ‘<td>‘ .$column. ‘</td>‘; } $str .= ‘</tr>‘; //按照excel表格的格式从1开始累计 for ($row = 1; $row <= $highestRow; $row++){//行数是以第1行开始 $str .= ‘<tr>‘; $str .= ‘<td>‘ .$row. ‘</td>‘; //输出excel表格的内容 for($column = ‘A‘; $column <= $highestColumm; $column++){ $str .= ‘<td>‘ .$sheet->getCell($column.$row)->getValue(). ‘</td>‘; } $str .= ‘</tr>‘; } $str .= ‘<table>‘; echo $str; ?>
以上是关于php 读取excel表格中的内容的主要内容,如果未能解决你的问题,请参考以下文章
用java的poi类读取一个excel表格的内容后再写入到一个新excel表格中的完整代码
PHP-ExcelReader 怎样才能支持读取excel2007文档