alexrvs/yii2-excel

extension Import Excel

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 1

Open Issues: 1

Type:yii2-extension

dev-master 2017-03-20 09:19 UTC

This package is not auto-updated.

Last update: 2024-04-19 17:52:02 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);	
	
 ?>```