2017 © Pedro Peláez
 

library mbexcel

image

bbear/mbexcel

  • Thursday, November 23, 2017
  • by hululidexiong
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Example:

use MBExcel\Factory;

define('APP_ROOT' , __DIR__);

//传入excel的保存路径
$excel = new Factory( APP_ROOT );

$data = array(
    array(
        'name' => '武帅',
        'phone' => '13334343344',
    ),
    array(
        'name' => '乔辉',
        'phone' => '13334343345',
    )
);
$e = $excel->easyExport($data);
//var_dump($e);

//数据量大的时候允许分段写入
$e = $excel->easyExport($data , 'first');
$e = $excel->easyExport($data , 'continue' , $e['ident']);
$e = $excel->easyExport(array() , 'end' , $e['ident']);
//var_dump($e);

The Versions

23/11 2017

dev-master

9999999-dev

  Sources   Download

LGPL

The Requires

 

The Development Requires

by BBear

23/11 2017

v0.0.3

0.0.3.0

  Sources   Download

LGPL

The Requires

 

The Development Requires

by BBear

23/11 2017

v0.0.2

0.0.2.0

  Sources   Download

LGPL

The Requires

 

The Development Requires

23/11 2017

v0.0.1

0.0.1.0

  Sources   Download

LGPL

The Requires

 

The Development Requires