删除数组元素有不同的方法,可以根据具体的需要选择不同的方法。
1.unset() 方法
注意:当您使用unset()方法时,数组Key值不会更改。 如果要重新编号键,您可以在unset()之后使用array_values(),它将所有键转换为从0开始的数值枚举键。
1 2 3 4 5 6 |
<?php $array = array(0 => "a", 1 => "b", 2 => "c"); unset($array[1]); //↑ 需要删除的键 ?> |
输出
1 2 3 4 |
Array ( [0] => a [2] => c ) |