yii-excel-importer

Yii1 Excel Importer

  • 所有者: ruskid/yii-excel-importer
  • 平台:
  • 许可证: GNU General Public License v2.0
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Yii1 Excel Importer

Usage

$file = CUploadedFile::getInstanceByName('file');

$importer = new YiiExcelImporter($file->tempName);
$importer->import('PRODUCTO', [
        [
            'attribute' => 'NOMBRE',
            'value' => '$row[0]',
            'unique' => true,
        ],
        [
            'attribute' => 'FABRICANTE',
            'value' => '$row[2]',
        ]
]);
$importer->import('PRODUCTO_DETAILS', [
        [
            'attribute' => 'PRODUCTO',
            'value' => 'PRODUCTO::model()->findByAttributes(["NOMBRE" => "$row[0]"])->ID'
        ],
        [
            'attribute' => 'GRUPO_COMPRES',
            'value' => ['$array[$row[0]]['grupo']', ['array' => $some_array_as_param]],
        ],
]);

主要指标

概览
名称与所有者ruskid/yii-excel-importer
主编程语言PHP
编程语言PHP (语言数: 1)
平台
许可证GNU General Public License v2.0
所有者活动
创建于2015-05-13 08:41:20
推送于2015-05-14 16:40:58
最后一次提交2015-05-14 18:44:26
发布数0
用户参与
星数2
关注者数2
派生数0
提交数7
已启用问题?
问题数0
打开的问题数0
拉请求数0
打开的拉请求数0
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?