0
當所有的列全部爲零時,是否有切片2d數組的方法? TIA切片2D數組在PHP中
$cars = array(
array('Cars', 0, 18, 2, 4, 0, 3, 0, 8),
array('BMW', 0, 13, 2, 4, 0, 3, 0, 8),
array('Saab', 0, 29, 2, 4, 0, 3, 0, 8),
array('Land Rover', 0, 15, 2, 4, 0, 3, 0, 8),
);
echo '<table border="1">';
foreach ($cars as $car) {
echo '<tr>';
foreach ($car as $key) {
echo '<td>'.$key.'</td>';
}
echo '</tr>';
}
echo '</table>';
你能展示預期的輸出 – user3099298
你想要沒有'0'的子數組嗎? –
不太確定你的問題......你能詳細說明一下嗎? – Kitson88