請幫助 時,我想喲當我打印陣列之後從陣列布歐中刪除一個元素它顯示錯誤注意未定義偏移:3行號16如何刪除陣列的PHP的值
<?php
$value = 22;
$numbers = array(4, 6, 2, 22, 11);
$arrlength = count($numbers);
for($y = 0; $y < $arrlength ; $y++) {
if ($numbers[$y] == $value) {
unset($numbers[$y]);
}
}
$arrlength = count($numbers);
for($x = 0; $x < $arrlength; $x++) {
echo $numbers[$x];
echo "<br>";
}
?>
在php中的數組不會重新索引,所以'$ numbers [3]'將會被取消定義。使用'foreach'來遍歷數組或使用'array_values()'手動重新索引。 – jeroen