|
@@ -33,6 +33,12 @@ $data = $excel->openFile('tutorial.xlsx')
|
|
|
->openSheet('Sheet1', \Vtiful\Kernel\Excel::SKIP_EMPTY_CELLS|\Vtiful\Kernel\Excel::SKIP_EMPTY_ROW)
|
|
|
->getSheetData();
|
|
|
|
|
|
+var_dump($data);
|
|
|
+
|
|
|
+$data = $excel->openFile('tutorial.xlsx')
|
|
|
+ ->openSheet('Sheet1', \Vtiful\Kernel\Excel::SKIP_EMPTY_VALUE)
|
|
|
+ ->getSheetData();
|
|
|
+
|
|
|
var_dump($data);
|
|
|
?>
|
|
|
--CLEAN--
|
|
@@ -82,4 +88,19 @@ array(2) {
|
|
|
[0]=>
|
|
|
string(5) "viest"
|
|
|
}
|
|
|
+}
|
|
|
+array(3) {
|
|
|
+ [0]=>
|
|
|
+ array(1) {
|
|
|
+ [1]=>
|
|
|
+ string(4) "Cost"
|
|
|
+ }
|
|
|
+ [1]=>
|
|
|
+ array(0) {
|
|
|
+ }
|
|
|
+ [2]=>
|
|
|
+ array(1) {
|
|
|
+ [0]=>
|
|
|
+ string(5) "viest"
|
|
|
+ }
|
|
|
}
|