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 e2f83c8 commit f92e523Copy full SHA for f92e523
src/Utils/Excel.php
@@ -89,7 +89,7 @@ public static function toArray(array $row, $replaceFlag = ['*'], $targetFlag = '
89
$num = 0;
90
foreach ($row as $key => $value) {
91
$rowKey = str_replace($replaceFlag, $targetFlag, $key);
92
- if (!empty($rowKey)) {
+ if (empty($rowKey)) {
93
$rowKey = trim($rowKey);
94
$rowKey = $rowKey ?: $num;
95
}
0 commit comments