Read file (full amount)
Compiling
./configure --enable-readerExample
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$filePath = $excel->fileName('tutorial.xlsx')
->header(['Item', 'Cost'])
->output();
$data = $excel->openFile('tutorial.xlsx')
->openSheet()
->getSheetData();
var_dump($data)Last updated