2017 © Pedro Peláez
 

library phpsimpleexcel

PHPSimpleExcel is a library basing on oliverschwarz/php-excel

image

fml/phpsimpleexcel

PHPSimpleExcel is a library basing on oliverschwarz/php-excel

  • Wednesday, March 23, 2016
  • by Abdulklara
  • Repository
  • 1 Watchers
  • 1 Stars
  • 73 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 11 % Grown

The README.md

FunkyMonkeyLabs\PHPSimpleExcel by FunkyMonkeyLabs

PHPSimpleExcel is a library basing on oliverschwarz/php-excel. This implementation allow to you to controlling current row by startRow() method, which returns Row object., (*1)

Instalation

FunkyMonkeyLabs\PHPSimpleExcel is available on packagist.org (composer), so you can simply add:, (*2)

    "require": {
        "fml/phpsimpleexcel" : "v1.0.0"
    }

Usage

<?php

require_once __DIR__.'/vendor/autoload.php';

$excel = new FML\PhpSimpleExcel\PhpSimpleExcel();
$excel->addNamedStyle('idFormat', array(
        "NumberFormat" => array(
            "ss:Format" => "##00"
        )
    ));
$excel->addRow(array(
        "id", "Column1", "Column2"
    ));

foreach(range(0,11) as $id) {
    $excel
        ->startRow()
        ->addCell($id, 'Number', 'idFormat')
        ->addCell('value'.$id)
        ->addCell('value2'.$id)
        ->end();
}
echo $excel->generateXML('excel');

The Versions

23/03 2016

dev-master

9999999-dev

PHPSimpleExcel is a library basing on oliverschwarz/php-excel

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Patryk Szlagowski

excel xls funkymonkeylabs fml

23/03 2016

v1.0.2

1.0.2.0

PHPSimpleExcel is a library basing on oliverschwarz/php-excel

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Patryk Szlagowski

excel xls funkymonkeylabs fml

29/07 2015

v1.0.1

1.0.1.0

PHPSimpleExcel is a library basing on oliverschwarz/php-excel

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Patryk Szlagowski

excel xls funkymonkeylabs fml

29/07 2015

dev-develop

dev-develop

PHPSimpleExcel is a library basing on oliverschwarz/php-excel

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Patryk Szlagowski

excel xls funkymonkeylabs fml

29/07 2015

v1.0.0

1.0.0.0

PHPSimpleExcel is a library basing on oliverschwarz/php-excel

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Patryk Szlagowski

excel xls funkymonkeylabs fml