PHP Excel Reader是一个用来读取EXCEL表格文件的PHP类,能够获取EXCEL文件中任意单元格的值和格式。
PHP Excel Reader 是一个用来读取 EXCEL 表格文件的 PHP 类,能够获取EXCEL文件(.xls)中任意单元格的值和格式。
下载PHP Excel Reader
下载地址:http://sourceforge.net/projects/phpexcelreader/
使用示例:
表格对应内容:
引入类,创建对象,设置读取文件的目录
<?php error_reporting(E_ALL ^ E_NOTICE); require_once 'excel_reader2.php'; $data = new Spreadsheet_Excel_Reader();//创建对象 $data->setOutputEncoding('UTF-8');//设置编码格式 $data->read("example.xls");//读取excel文档
读取完毕后,会将表格有关的信息,全部存到一个大数组中。
<?php error_reporting(E_ALL ^ E_NOTICE); require_once 'excel_reader2.php'; $data = new Spreadsheet_Excel_Reader();//创建对象 $data->setOutputEncoding('UTF-8');//设置编码格式 $data->read("example.xls");//读取excel文档 echo "<pre class="brush:php;toolbar:false">"; print_r($data->sheets); echo "";
运行结果如下
更多相关知识,请访问 PHP中文网!!