如果键是字符串,则取消设置数组键

unset array keys if key is string

我有这样的数组

$arr  = 
    ['0' => 
        ['0' => 'zero', 
         '1' => 'test', 
         '2' =>'testphp',
         'test'=>'zero',
         'test1'=>'test',
         'test2'=>'testphp'],
    '1' => 
        ['0' => 'z', 
         '1' => 'x', 
         '2' =>'c',
         'test'=>'z',
         'test1'=>'x',
         'test2'=>'c']
        ];

0,1,2 与 test,test1,test2 相同。我需要删除键,其中有测试、测试 1、测试 2 之类的字符串。 我认识路

foreach($arr as $a){
   unset($arr['test']);
   unset($arr['test1']);
   unset($arr['test2']);
}

但是可以在不指定确切名称的情况下找到键,因为我只需要数字键。

解决方案是:

假设您知道它只有 2 层。

 $arr  =
['0' =>
    ['0' => 'zero',
        '1' => 'test',
        '2' =>'testphp',
        'test'=>'zero',
        'test1'=>'test',
        'test2'=>'testphp'],
    '1' =>
        ['0' => 'z',
            '1' => 'x',
            '2' =>'c',
            'test'=>'z',
            'test1'=>'x',
            'test2'=>'c']
];

foreach($arr as $parentKey=>$arrayItem){
    foreach($arrayItem as $key=>$subArrayItem){
        if(!is_int($key)){
            unset($arr[$parentKey][$key]);
        }
    }
}
var_dump($arr);

为什么会生成这样的数组?

edit: 看了Valdorous的回答后意识到它是多维数组。以下应递归处理多维数组。

调用函数(见下文)

remove_non_numeric_keys($arr) 


function remove_non_numeric_keys($arr)
{
    foreach($arr as $key=>$val)
    {
        if(!is_numeric($key)) // if not numeric unset it regardless if it is an array or not
        {
            unset($arr[$key]);
        }else{
            if(is_array($val) // if it is an array recursively call the function to check the values in it
            {
                remove_non_numeric_keys($val);
             }
        }
    }
}

这应该只删除非数字键。 http://php.net/manual/en/function.is-numeric.php

希望对您有所帮助