2017 © Pedro Peláez
 

library csv_export

http分块导出csv

image

klauspeng/csv_export

http分块导出csv

  • Monday, September 18, 2017
  • by klauspeng
  • Repository
  • 1 Watchers
  • 0 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

CsvExport

http分块导出csv, (*1)

利用http chunk技术,分批导出,减少内存占用!, (*2)

composer

composer require klauspeng/csv_export, (*3)

使用

<?php
use klauspeng\csv_export;

require './vendor/autoload.php';

// 初始化,命名
$csv = new csv_export('导出测试' . '_' . date('YmdHis'));

// 表头
$colums = ['a列', 'b列'];
$csv->setDate($colums, 0);

// 数据
$date[] = [1,2];
$date[] = [3,4];
$csv->setDate($date);

The Versions

18/09 2017

dev-master

9999999-dev

http分块导出csv

  Sources   Download

MIT

The Requires

  • php >=5.3

 

18/09 2017

v1.2.1

1.2.1.0

http分块导出csv

  Sources   Download

MIT

The Requires

  • php >=5.3

 

18/09 2017

v1.3

1.3.0.0

http分块导出csv

  Sources   Download

MIT

The Requires

  • php >=5.3

 

18/09 2017

v1.2

1.2.0.0

http分块导出csv

  Sources   Download

MIT

The Requires

  • php ^5.3

 

16/09 2017

v1.1

1.1.0.0

http分块导出csv

  Sources   Download

MIT

The Requires

  • php ^5.3

 

15/09 2017

1.0

1.0.0.0

http分块导出csv

  Sources   Download

MIT

The Requires

  • php ^5.3
  • another-vendor/package 1.*