alexrvs / yii2-excel
extension Import Excel
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 1
Type:yii2-extension
Requires
- phpoffice/phpexcel: 1.8.0
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2025-03-21 22:14:49 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); ?>```