资源简介
php excel 操作例子源码 xml
代码片段和文件信息
// Test CVS
require_once ‘Excel/reader.php‘;
// ExcelFile($filename $encoding);
$data = new Spreadsheet_Excel_Reader();
// Set output Encoding.
$data->setOutputEncoding(‘CP1251‘);
/***
* if you want you can change ‘iconv‘ to mb_convert_encoding:
* $data->setUTFEncoder(‘mb‘);
*
**/
/***
* By default rows & cols indeces start with 1
* For change initial index use:
* $data->setRowColOffset(0);
*
**/
/***
* Some function for formatting output.
* $data->setDefaultFormat(‘%.2f‘);
* setDefaultFormat - set format for columns with unknown formatting
*
* $data->setColumnFormat(4 ‘%.3f‘);
* setColumnFormat - set format for column (apply only to number fields)
*
**/
$data->read(‘jxlrwtest.xls‘);
/*
$data->sheets[0][‘numRows‘] - count r
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 28956 2007-07-05 23:09 jxlrwtest.xls
文件 652 2007-07-05 23:09 README
文件 8495 2007-07-05 23:09 Excel\oleread.inc
文件 49060 2007-07-05 23:09 Excel\reader.php
文件 325 2007-07-05 23:09 changelog.txt
文件 6067 2007-07-05 23:09 example2.php
文件 1661 2007-07-05 23:09 example.php
评论
共有 条评论