Sorry, cant find what i need. I have xls/xlsx. Then i get smth like this:
array
0 =>
array
0 => string 'NameFirstColumn'
1 => string 'NameSecondColumn'
1 =>
array
0 => string 'qqq'
1 => float 30
2 =>
array
0 => string 'www'
1 => float 20
First row is a header with names of values. How to make PHPExcel convert to array looks like:
array
0 =>
array
NameFirstColumn => string 'qqq'
NameSecondColumn => float 30
1 =>
array
NameFirstColumn => string 'www'
NameSecondColumn => float 20