PHP code example of spaghetti / xlsx-parser
1. Go to this page and download the library: Download spaghetti/xlsx-parser library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
spaghetti / xlsx-parser example snippets
use Spaghetti\XLSXParser;
$workbook = (new XLSXParser())->open('workbook.xlsx');
foreach ($workbook->getRows($workbook->getIndex('worksheet')) as $key => $values) {
var_dump($key, $values);
}