alexrvs / yii2-excel
导入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: 2024-09-20 19:37:33 UTC
README
导入Excel
安装
安装此扩展的首选方式是通过composer。
运行以下命令之一
php composer.phar require --prefer-dist alexrvs/yii2-excel "*"
或者
"alexrvs/yii2-excel": "*"
将以下内容添加到您的composer.json
文件的require部分。
使用方法
扩展安装后,只需在您的代码中通过
<?php $phpexcel = new PhpExcel(); $phpexcel->load($filename); ?>```