Download the PHP package writethesky/php-excel-reader without Composer
On this page you can find all versions of the php package writethesky/php-excel-reader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download writethesky/php-excel-reader
More information about writethesky/php-excel-reader
Files in writethesky/php-excel-reader
Download writethesky/php-excel-reader
More information about writethesky/php-excel-reader
Files in writethesky/php-excel-reader
Vendor writethesky
Package php-excel-reader
Short Description the PHPExcelReaderk
License Apache-2.0
Homepage http://xxx.cn/
Package php-excel-reader
Short Description the PHPExcelReaderk
License Apache-2.0
Homepage http://xxx.cn/
Keywords thinkphpPHPExcelReader
Please rate this library. Is it a good library?
Informations about the package php-excel-reader
PHPExcelReader 是一个轻量级的excel文件读取类, 支持 CSV, XLS, XLSX 文件
依赖:
- PHP 5.3.0+
- PHP 必须开启支持Zip文件处理 (see http://php.net/manual/en/zip.installation.php)
例子:
<?php
use writethesky\PHPExcelReader\PHPExcelReader;
$Reader = new PHPExcelReader('test.xls');
$total = $Reader->count(); // 获取总行数
//$current = $Reader->current(); // 获取当前行数据
/*
$Reader->seek(4); // 跳到第4行
$row = $Reader->current(); // 获取当前行数据
*/
/*
foreach($Reader as $key => $row){
$data[] = $row; // 循环行内数据
}
*/
var_dump($total);
All versions of php-excel-reader with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4.0
The package writethesky/php-excel-reader contains the following files
Loading the files please wait ....