• Stars
    star
    556
  • Rank 77,039 (Top 2 %)
  • Language
    PHP
  • Created about 13 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simplexcel.php - Easily read / parse / convert / write between Microsoft Excel XML / CSV / TSV / HTML / JSON / etc spreadsheet tabular file formats

Simple Excel

Easily parse / convert / write between Microsoft Excel XML / CSV / TSV / HTML / JSON / etc formats

For further deatails see the GitHuib Pages site: http://faisalman.github.com/simple-excel-php

PHP Versions Supported

PHP >= 5.3

Installation

If you're using Composer to manage libraries, include this package in your composer.json

"require" : {
    "faisalman/simple-excel-php" : "0.3.*"
}

If you want to try version 0.4 (still in develop branch) you can use

"require" : {
    "faisalman/simple-excel-php" : "develop as 0.4.0-alpha"
}

Or just load this library in your PHP project by including SimpleExcel.php

require_once('../your/project/directory/here/lib/SimpleExcel/SimpleExcel.php');

Features

  • Available parsers: Microsoft Excel 2003 XML, CSV, TSV, HTML, JSON
  • Available writers: Microsoft Excel 2003 XML, CSV, TSV, HTML, JSON

Usage

use SimpleExcel\SimpleExcel

$excel = new SimpleExcel('CSV');
$excel->parser->loadFile('test.csv');

echo $excel->parser->getCell(1, 1);

$excel->convertTo('JSON');
$excel->writer->addRow(array('add', 'another', 'row'));
$excel->writer->saveFile('example');

Development

Build Status

Testing

$ phpunit --configuration test/phpunit.xml

Next version 0.4.0-alpha is now available under develop branch

License

Copyright (c) 2011-2012 Faisalman <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

ua-parser-js

UAParser.js - Free & open-source JavaScript library to detect user's Browser, Engine, OS, CPU, and Device type/model. Runs either in browser (client-side) or node.js (server-side).
JavaScript
8,515
star
2

simple-excel-js

SimpleExcel.js - WIP client-side script to parse / convert / write XML / CSV / TSV / HTML / JSON / etc formats.
JavaScript
189
star
3

flash-cookie-js

FlashCookie.js - JavaScript library to manage persistent cross-browser & cross-domain cookies by utilizing Flash Player plugin
ActionScript
15
star
4

fallr-js

Fallr.js - Fancy, simple, yet elegant message / alert / prompt / dialog / popup / notification / modal box jQuery plugin
JavaScript
13
star
5

sms-pdu-js

SMSPDU.js - SMS PDU library written in JavaScript
JavaScript
10
star
6

docklr-css

Give your site a macOS-like Dock menu & stacks using pure CSS3 (no JS needed!)
CSS
9
star
7

explr-js

Explr.js jQuery plugin - Create a "Windows Explorer"-like Tree structure
JavaScript
6
star
8

age-calc-cs

AgeCalc.cs - C# age calculation library: calculate relative time (years, months, days) since birthday.
C#
5
star
9

sticklr-js

Sticklr.js - Sticky side panel jQuery plugin
CSS
4
star
10

phone-identifier-java

PhoneIdentifier.java - Indonesian phone number identifier
Java
3
star
11

ua-client-hints-js

Parse & serialize user-agent client hints (UA-CH) HTTP headers
TypeScript
2
star
12

time-cs

Time.cs - C# extension methods for DateTime to calculate relative time and age
C#
2
star
13

jQuery-LiveTweet

A jQuery plugin to fetch tweets from Twitter
JavaScript
1
star
14

querystring-cs

QueryString.cs - Extended C# QueryString Library
C#
1
star