将PHPExcel_IOFactory添加到symfony项目中

时间:2015-12-17 15:01:39

标签: mysql symfony phpexcel

我想使用php脚本将数据从excel文件导入到mysql数据库

我发现这个turorial Here非常清楚,但在我的情况下,我使用symfony框架,我不知道如何包含phpExcel_IOFactory。 有谁可以帮助我吗?

2 个答案:

答案 0 :(得分:3)

composer require phpoffice/phpexcel 

将负责安装和加载类。之后,只需使用:

$reader = \PHPExcel_IOFactory::createReaderForFile($filename);
$reader->setReadDataOnly(true);

$wb = $reader->load($filename);
$ws = $wb->getSheet(0);

注意类名前面的正斜杠。

答案 1 :(得分:0)

很简单,您必须在供应商中添加phpoffice/phpexcel。运行:

php composer.phar require phpoffice/phpexcel

这就是全部。