alexrvs / yii2-excel
extension Import Excel
dev-master
2017-03-20 09:19 UTC
Requires
- phpoffice/phpexcel: 1.8.0
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-03-07 03:16:06 UTC
README
Import Excel
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist alexrvs/yii2-excel "*"
or add
"alexrvs/yii2-excel": "*"
to the require section of your composer.json file.
Usage
Once the extension is installed, simply use it in your code by :
<?php $phpexcel = new PhpExcel(); $phpexcel->load($filename); ?>```