Skip leading rows
Function Prototype
setSkipRows(int $skipRows): selfTest data preparation
$config = ['path' => './tests'];
$excel = new \Vtiful\Kernel\Excel($config);
$filePath = $excel->fileName('tutorial.xlsx')
->header(['', 'Cost'])
->data([
[],
['viest', '']
])
->output();Example 1
Example 2
Last updated