我需要从主数组中删除一些索引。例如:
$removeIndex=array(1,3,6);
$mainArray=array('1'=>'a','2'=>'b','3'=>'c','4'=>'d','5'=>'e','6'=>'f');
我希望最终结果如下:
$mainArray=array('2'=>'b','4'=>'d','5'=>'e');
我知道我们在PHP中有array_slice
函数,它可以在循环中运行,但我有非常大的数据,我想避免在这里循环。
答案 0 :(得分:8)
也许尝试array_diff_key
:
$removeIndex=array(1,3,6);
$mainArray=array('1'=>'a','2'=>'b','3'=>'c','4'=>'d','5'=>'e','6'=>'f');
$removeIndex = array_flip($removeIndex);//flip turns values into keys
echo '<pre>';
//compute diff between arr1 and arr2, based on key
//returns all elements of arr 1 that are not present in arr2
print_r(array_diff_key($mainArray, $removeIndex));
echo '</pre>';
当我尝试这个时,它返回了:
Array ( [2] => b [4] => d [5] => e )
答案 1 :(得分:4)
您可以使用array_diff_key
,请注意,在removeIndex
数组中,您需要将值设为keys
$removeIndex=array('1' => 0,'3' => 0,'6' => 0);
$mainArray=array('1'=>'a','2'=>'b','3'=>'c','4'=>'d','5'=>'e','6'=>'f');
$t = array_diff_key($mainArray, $removeIndex);
print_r($t);
正如@Elias指出,您可以使用array_flip
将值更改为removeIndex
数组中的键。
答案 2 :(得分:1)
尝试unset功能。这必须完美。
unset($mainArray[1]);