2017 © Pedro Peláez
 

library excel

Wrapper for PHPEXCEL

image

eycopia/excel

Wrapper for PHPEXCEL

  • Friday, September 1, 2017
  • by eycopia
  • Repository
  • 1 Watchers
  • 0 Stars
  • 56 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 30 % Grown

The README.md

Excel Wrapper

The cells works like array, when: A=0, B=1, C=2..., etc. The rows init on 1, like excel., (*1)

Create

$excel = new Excel('COMPANY NAME');, (*2)

Add text to cell

setValue($cell, $row, $value)
$excel->setValue(1, 1, "Event");
Add word "Event" on B:1, (*3)

Merge

$excel->merge(1,1, 3, true);, (*4)

Background Cell

$excel->backgroundCell("#fff000", 1,1);, (*5)

Download

$excel->download('fileName');, (*6)

Save

If you need store excel data in a variable $data = $excel->save();, (*7)

Full Example

$excel = new Excel('EyCopia');
$excel->merge(1,1, 3, true);
$excel->setValue(1, 1, "Event");
$excel->backgroundCell("#fff000", 1,1);
$excel->setValue(0, 2, "Days", true);
$excel->setValue(1, 2, "Monday", true);
$excel->setValue(2, 2, "Tuesday", true);
$excel->setValue(3, 2, "Wednesday", true);
$excel->setValue(0, 3, "Hackaton", true)
->setValue(1, 3, "12", true)
->setValue(2, 3, "34", true)
->setValue(3, 3, "15", true);
$excel->setValue(0,4, "Networking", true)
->setValue(1,4, "10", true)
->setValue(2,4, "12", true)
->setValue(3,4, "43", true);
$excel->download('juan');, (*8)

The Versions

01/09 2017

dev-master

9999999-dev https://github.com/eycopia/php-exel

Wrapper for PHPEXCEL

  Sources   Download

MIT

The Requires

 

The Development Requires

excel phpexcel

01/09 2017

1.0.3

1.0.3.0 https://github.com/eycopia/php-exel

Wrapper for PHPEXCEL

  Sources   Download

MIT

The Requires

 

The Development Requires

excel phpexcel

05/10 2016

1.0.2

1.0.2.0 https://github.com/eycopia/php-exel

Wrapper for PHPEXCEL

  Sources   Download

MIT

The Requires

 

The Development Requires

excel phpexcel

04/10 2016

1.0.1

1.0.1.0 https://github.com/eycopia/php-exel

Wrapper for PHPEXCEL

  Sources   Download

MIT

The Requires

 

The Development Requires

excel phpexcel

27/09 2016

1.0.0

1.0.0.0 https://github.com/eycopia/php-exel

Wrapper for PHPEXCEL

  Sources   Download

MIT

The Requires

 

The Development Requires

excel phpexcel