2017 © Pedro Peláez
 

library multarray

A multidimensional array export/import CSV file tool library.

image

bkkkd/multarray

A multidimensional array export/import CSV file tool library.

  • Wednesday, March 21, 2018
  • by bkkkd
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Description

A multidimensional array export/import CSV file tool library., (*1)

demo

$data = array(
    '_id'=>'123',
    'name'=>array(
        'first'=>'Tim',
        'last'=>'Huang'
        )
     );
echo MultArray::toCsv($data); // print thee csv file content as below

$render = MultArray::fromCsv('.test.csv');//  it is same to $data

csv file content

_id,name[first],name[last]
123,Tim,Huang

php array

array(
    '_id'=>'123',
    'name'=>array(
        'first'=>'Tim',
        'last'=>'Huang'
        )
     )

The Versions

21/03 2018

dev-master

9999999-dev https://www.toaction.cn/

A multidimensional array export/import CSV file tool library.

  Sources   Download

MIT

The Requires

  • php >=5.6

 

The Development Requires

csv array mongo

20/03 2018

dev-develop

dev-develop https://www.toaction.cn

A multidimensional array export/import CSV file tool library.

  Sources   Download

MIT

The Requires

  • php >=5.6

 

The Development Requires

csv array mongo