我有一个foreach循环,我想完全删除满足条件的数组元素,并更改密钥以保持顺序1,2,3,4。
我有:
$thearray = array(20,1,15,12,3,6,93);
foreach($thearray as $key => $value){
if($value < 10){
unset($thearray[$key]);
}
}
print_r($thearray);
但这保留了之前的关键。我想把它们变成1,2,3,4,怎么能实现呢?
答案 0 :(得分:5)
使用array_values()
重置数组索引:
$thearray = array_values( $thearray);
print_r($thearray);
答案 1 :(得分:1)
您可以array_filter
使用remove the array elements that satisfy the criteria
$thisarray = array_filter($thearray,function($v){ return $v > 10 ;});
然后使用array_values
更改密钥以保留0,1,2,3,4 ....根据需要
$thisarray = array_values($thisarray);
答案 2 :(得分:0)
构建一个新数组,然后在以下情况下将其分配给原始数组:
$thearray=array(20,1,15,12,3,6,93);
$newarray=array();
foreach($thearray as $key=>$value){
if($value>=10){
$newarray[]=$value
}
}
$thearray=$newarray;
print_r($thearray);