aaugustyniak/phpexcelhandler
最新稳定版本:1.0.4
Composer 安装命令:
composer require aaugustyniak/phpexcelhandler
包简介
Handy php-excel wrapper classes
README 文档
README
API for simplified PhpExcel navigation and generating reports.
PhpExcelHandler
Right now this stuff works only under *nix systems.
If you want i.e. fill excel template with data and send it to output or save locally it is for you. Navigator classes take PhpExcel cell selection into cartesian like coordinates.
Installation
If you don’t have Composer yet, you should get it now.
-
Add the package to your
composer.json:"require": { ... "aaugustyniak/phpexcelhandler": "1.0.0", ... } -
Install:
$ php composer.phar install -
And use:
require_once "vendor/autoload.php"; $data = array( array("Column1", "Column2", "Column3"), array(1001, 2001, 3001), array(4001, 5001, 6001), array(7001, 8001, 9001), ); $phpExcelFactory = new DefaultPhpExcelFactory(); $spreadSheet = new SpreadSheet($phpExcelFactory); $anchorGuesser = new WriteAnchorGuesser($data); $writer = new WriteTabularCommand($anchorGuesser); $spreadSheet->modify($writer); $outputHtml = $spreadSheet->getHtmlStream(); echo $outputHtml;
统计信息
- 总下载量: 985
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-24