3v4l.org

run code in 500+ PHP versions simultaneously
<?php $fruits = [ 'ORANGE' => [ 'Size' => '0.20', 'Cost' => '0.49', 'Lbs.' => '0.60', ], 'LEMON' => [ 'Size' => '0.15', 'Cost' => '0.29', 'Lbs.' => '0.20', ] ]; $keys = array_keys($fruits); if(!empty($keys)) $innerKeys = array_keys($fruits[$keys[0]]); echo '<table id="fruits" style="width:400px;border:1px solid black;">'; echo '<thead><tr>'; echo '<td>----</td>'; foreach($keys as $key) echo '<td>'.$key.'</td>'; echo '</tr></thead>'; echo '<tbody>'; foreach($innerKeys as $inKey){ echo '<tr>'; echo '<td>'.$inKey.'</td>'; foreach($fruits as $fKey => $val){ echo '<td>'.$val[$inKey].'</td>'; } echo '</tr>'; } echo '</tbody>'; echo '</table>';

preferences:
125.89 ms | 1607 KiB | 5 Q