We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3895a1d commit b935a65Copy full SHA for b935a65
tests/open_xlsx_get_data_skip_empty.phpt
@@ -33,6 +33,12 @@ $data = $excel->openFile('tutorial.xlsx')
33
->openSheet('Sheet1', \Vtiful\Kernel\Excel::SKIP_EMPTY_CELLS|\Vtiful\Kernel\Excel::SKIP_EMPTY_ROW)
34
->getSheetData();
35
36
+var_dump($data);
37
+
38
+$data = $excel->openFile('tutorial.xlsx')
39
+ ->openSheet('Sheet1', \Vtiful\Kernel\Excel::SKIP_EMPTY_VALUE)
40
+ ->getSheetData();
41
42
var_dump($data);
43
?>
44
--CLEAN--
@@ -82,4 +88,19 @@ array(2) {
82
88
[0]=>
83
89
string(5) "viest"
84
90
}
91
+}
92
+array(3) {
93
+ [0]=>
94
+ array(1) {
95
+ [1]=>
96
+ string(4) "Cost"
97
+ }
98
99
+ array(0) {
100
101
+ [2]=>
102
103
104
+ string(5) "viest"
105
85
106
0 commit comments