Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/faisalman/simple-excel-php
Simplexcel.php - Easily read / parse / convert / write between Microsoft Excel XML / CSV / TSV / HTML / JSON / etc spreadsheet tabular file formats
https://github.com/faisalman/simple-excel-php
csv-converter excel-converter excel-reader excel-writer html-converter json-converter xlsx-converter xlsx-reader
Last synced: 9 days ago
JSON representation
Simplexcel.php - Easily read / parse / convert / write between Microsoft Excel XML / CSV / TSV / HTML / JSON / etc spreadsheet tabular file formats
- Host: GitHub
- URL: https://github.com/faisalman/simple-excel-php
- Owner: faisalman
- Created: 2011-03-13T15:47:11.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2021-10-27T07:32:18.000Z (about 3 years ago)
- Last Synced: 2024-10-14T13:53:05.565Z (25 days ago)
- Topics: csv-converter, excel-converter, excel-reader, excel-writer, html-converter, json-converter, xlsx-converter, xlsx-reader
- Language: PHP
- Homepage: http://faisalman.github.io/simple-excel-php
- Size: 452 KB
- Stars: 562
- Watchers: 48
- Forks: 146
- Open Issues: 14
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- awesome-indo-projects - Simple PHP Excel - Easily parse / convert / write any Microsoft Excel. (PHP)
- awesome-indonesia-repo - Simple PHP Excel - Easily parse / convert / write any Microsoft Excel. (PHP)
- awesome-vietnam-repo - Simple PHP Excel - Easily parse / convert / write any Microsoft Excel. (PHP)
- php-awesome - Simple Excel
README
# 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
```json
"require" : {
"faisalman/simple-excel-php" : "0.3.*"
}
```
If you want to try version 0.4 (still in develop branch) you can use```json
"require" : {
"faisalman/simple-excel-php" : "develop as 0.4.0-alpha"
}
```Or just load this library in your PHP project by including SimpleExcel.php
```json
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
```php
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](https://travis-ci.org/faisalman/simple-excel-php.png?branch=master)](https://travis-ci.org/faisalman/simple-excel-php)
Testing
```sh
$ phpunit --configuration test/phpunit.xml
```Next version 0.4.0-alpha is now available under [develop](https://github.com/faisalman/simple-excel-php/tree/develop) branch
## License
Copyright (c) 2011-2012 Faisalman <>
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.