// figure out which keys need to be added
$missingKeys =
array_diff_key($keyIndex,
$tmpRow);
// Remove all keys which don't exist in $keyIndex
$tmpRow =
array_filter($tmpRow,
static fn ($k) =>
array_key_exists($k,
$keyIndex), ARRAY_FILTER_USE_KEY
);
// add missing keys to row, but use $this->emptyCells
$tmpRow =
array_merge($tmpRow,
array_map(fn ($v) =>
['data' =>
$this->emptyCells
],
$missingKeys));
// order keys by $keyIndex values
uksort($tmpRow,
static fn ($k1,
$k2) =>
$keyIndex[$k1] <=>
$keyIndex[$k2]);
} $this->rows
[] =
$tmpRow;
return $this;
} /**
* Set to true if each row column should be synced by keys defined in heading.
*
* If a row has a key which does not exist in heading, it will be filtered out
* If a row does not have a key which exists in heading, the field will stay empty
*
* @return $this
*/