When you download a normal excel file, get the header
$headers = $list
->rangeToArray(
'A1:'.$list->getHighestColumn().'1',
null,
false,
false,
true
);
But often managers download files where the headers begin at 7, 10 lines, and at the top is such as the logo and contacts. How to get the headers in these cases?