/var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/simplexlsx-master
NameSizeModeActions
examples/-0755rm
src/-0755rm
composer.json5980644editdlrm
license.md10820644editdlrm
README.md67490644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/simplexlsx-master/README.md (6749B)
# SimpleXLSX class 0.8.3 (Official) Parse and retrieve data from Excel XLSx files. MS Excel 2007 workbooks PHP reader. No addiditional extensions need (internal unzip + standart SimpleXML parser) XLSX only, MS Excel 97 php reader [here](https://github.com/shuchkin/simplexls) **Sergey Shuchkin** 2010-2018
## Basic Usage ```php if ( $xlsx = SimpleXLSX::parse('book.xlsx') ) { print_r( $xlsx->rows() ); } else { echo SimpleXLSX::parseError(); } ``` ``` Array ( [0] => Array ( [0] => ISBN [1] => title [2] => author [3] => publisher [4] => ctry ) [1] => Array ( [0] => 618260307 [1] => The Hobbit [2] => J. R. R. Tolkien [3] => Houghton Mifflin [4] => USA ) ) ``` ## Installation ``` composer require shuchkin/simplexlsx ``` ## Examples ### XLSX to html table ```php if ( $xlsx = SimpleXLSX::parse('book.xlsx') ) { echo ''; foreach( $xlsx->rows() as $r ) { echo ''; } echo '
'.implode('', $r ).'
'; // or $xlsx->toHTML(); } else { echo SimpleXLSX::parseError(); } ``` ### XLSX read cells, out commas and bold headers ```php echo '
';
if ( $xlsx = SimpleXLSX::parse( 'xlsx/books.xlsx' ) ) {
	foreach ( $xlsx->rows() as $r => $row ) {
		foreach ( $row as $c => $cell ) {
			echo ($c > 0) ? ', ' : '';
			echo ( $r === 0 ) ? ''.$cell.'' : $cell;
		}
		echo '
'; } } else { echo SimpleXLSX::parseError(); } echo '
'; ``` ### XLSX get sheet names and sheet indexes ```php if ( $xlsx = SimpleXLSX::parse( 'xlsx/books.xlsx' ) ) { print_r( $xlsx->sheetNames() ); } // Sheet numeration started 0 ``` ``` Array ( [0] => Sheet1 [1] => Sheet2 [2] => Sheet3 ) ``` ### Gets extend cell info by ->rowsEx() ```php print_r( SimpleXLSX::parse('book.xlsx')->rowsEx() ); ``` ``` Array ( [0] => Array ( [0] => Array ( [type] => s [name] => A1 [value] => ISBN [href] => [f] => [format] => [r] => 1 ) [1] => Array ( [type] => s [name] => B1 [value] => title [href] => [f] => [format] => [r] => 1 ) ``` ### Select Sheet ```php $xlsx = SimpleXLSX::parse('book.xlsx'); print_r( $xlsx->rows(1) ); // Sheet numeration started 0, we select second worksheet ``` ### Get sheet by index ```php $xlsx = SimpleXLSX::parse('book.xlsx'); echo 'Sheet Name 2 = '.$xlsx->sheetName(1); ``` ### XLSX::parse remote data ```php if ( $xlsx = SimpleXLSX::parse('http://www.example.com/example.xlsx' ) ) { list($num_cols, $num_rows) = $xlsx->dimension(1); // don't dimension trust extracted from xml echo $xlsx->sheetName(1).':'.$num_cols.'x'.$num_rows; } else { echo SimpleXLSX::parseError(); } ``` ### XLSX::parse memory data ```php // For instance $data is a data from database or cache if ( $xlsx = SimpleXLSX::parse( $data, true ) ) { print_r( $xlsx->rows() ); else { echo SimpleXLSX::parseError(); } ``` ### Get Cell (slow) ```php echo $xlsx->getCell(0, 'B2'); // The Hobbit ``` ### DateTime helpers ```php echo $xlsx->getCell(0,'C2'); // 2016-04-12 13:41:00 $xlsx->setDateTimeFormat('d.m.Y H:i'); echo $xlsx->getCell(0,'C2'); // 12.04.2016 13:41 $xlsx->setDateTomeFormat('U'); // returns as unixtimestamp echo $xlsx->getCell(0,'C2'); // 1460468460 $excel_date = $xlsx->setDateTimeFormat( NULL ); // returns as excel datetime echo $excel_date // 42472.570138889 echo date('m/d/Y', $xlsx->unixstamp( $excel_date )); // 04/12/2016 ``` ### Debug ```php ini_set('error_reporting', E_ALL ); ini_set('display_errors', 1 ); if ( $xlsx = SimpleXLSX::parse('books.xlsx', false, true ) ) { echo $xlsx->toHTML(); } else { echo SimpleXLSX::parseError(); } ``` ### Classic OOP style ```php $xlsx = new SimpleXLSX('books.xlsx'); if ($xlsx->success()) { print_r( $xlsx->rows() ); } else { echo 'xlsx error: '.$xlsx->error(); } ``` ## History ``` v0.8.3 (2018-11-14) getCell - fixed empty cells and rows, safe now, but very slow v0.8.2 (2018-11-09) fix empty cells and rows in rows() and rowsEx(), added setDateTimeFormat( $see_php_date_func ) v0.8.1 rename simplexlsx.php to SimpleXLSX.php, rename parse_error to parseError fix _columnIndex, add ->toHTML(), GNU to MIT license v0.7.13 (2018-06-18) get sheet indexes bug fix v0.7.12 (2018-06-17) $worksheet_id to $worksheet_index, sheet numeration started 0 v0.7.11 (2018-04-25) rowsEx(), added row index "r" to cell info v0.7.10 (2018-04-21) fixed getCell, returns NULL if not exits v0.7.9 (2018-03-17) fixed sheetNames() (namespaced or not namespaced attr) v0.7.8 (2018-01-15) remove namespace prefixes (hardcoded) v0.7.7 (2017-10-02) XML External Entity (XXE) Prevention (]>) v0.7.6 (2017-09-26) if worksheet_id === 0 (default) then detect first sheet (for LibreOffice capabilities) v0.7.5 (2017-09-10) ->getCell() - fixed v0.7.4 (2017-08-22) ::parse_error() - to get last error in "static style" v0.7.3 (2017-08-14) ->_parse fixed relations reader, added ->getCell( sheet_id, address, format ) for direct cell reading v0.7.2 (2017-05-13) ::parse( $filename ) helper method v0.7.1 (2017-03-29) License added v0.6.11 (2016-07-27) fixed timestamp() v0.6.10 (2016-06-10) fixed search entries (UPPERCASE) v0.6.9 (2015-04-12) $xlsx->datetime_format to force dates out v0.6.8 (2013-10-13) fixed dimension() where 1 row only, fixed rowsEx() empty cells indexes (Daniel Stastka) v0.6.7 (2013-08-10) fixed unzip (mac), added $debug param to _constructor to display errors v0.6.6 (2013-06-03) +entryExists() v0.6.5 (2013-03-18) fixed sheetName() v0.6.4 (2013-03-13) rowsEx(), _parse(): fixed date column type & format detection v0.6.3 (2013-03-13) rowsEx(): fixed formulas, added date type 'd', added format 'format' dimension(): fixed empty sheet dimension + sheetNames() - returns array( sheet_id => sheet_name, sheet_id2 => sheet_name2 ...) v0.6.2 (2012-10-04) fixed empty cells, rowsEx() returns type and formulas now v0.6.1 (2012-09-14) removed "raise exception" and fixed _unzip v0.6 (2012-09-13) success(), error(), __constructor( $filename, $is_data = false ) v0.5.1 (2012-09-13) sheetName() fixed v0.5 (2012-09-12) sheetName() v0.4 sheets(), sheetsCount(), unixstamp( $excelDateTime ) v0.3 - fixed empty cells (Gonzo patch) ```