I have below value in 1st Column of My CSV file
<table border="1">
<tr>
<th align="left">First Name</th>
<th align="left">Gender</th>
<th align="left">Nationality</th>
</tr>
<tr>
<td align="left">Mike</td>
<td align="left">M</td>
<td align="left">Singaporean</td>
</tr>
I already followed: Read each line of txt file to new array element
How to convert above CSV file to Array. So output will be
Array
(
[0] => Array
(
[0] => First Name
[1] => Gender
[2] => Nationality
)
[1] => Array
(
[0] => Mike
[1] => M
[2] => Singaporean
)
)