I am using PHPExcel with Symfony 2 and showing the content of an excel file like this:
$users = array();
foreach($excel as $i=>$row) {
if($i !== 1) {
array_push($users,array(
'row'=>$i,
'name'=>$row['A'],
'lastname'=>$row['B']
//...and so on
));
}
}
Question:
How can I show the content using the row name instead of $row['A']..ect?
As $row['name']... I mean the name of the excel row.
Example:
A = name B = email...and so on...
I would like to show the content like this:
$users = array();
foreach($excel as $i=>$row) {
if($i !== 1) {
array_push($users,array(
'row'=>$i,
'name'=>$row['name'],
'lastname'=>$row['surname']
//...and so on
));
}
}