douti0687 2017-06-10 23:41
浏览 25
已采纳

如果特定值包含在多维数组的子级别中,则返回顶级数组的键

I want to return the first-level key of a multidimensional array based on the value of one of the sub-levels.

For example if I provide '@google.com' as 'Admin Emails' I want to return 'Google'.

My array is below.

$array = array (
    'Google' => array (
            'Allowed Emails' => array ('@google.com','@gmail.com' ),
            'Admin Emails' => 'laz@google.com, kingkong@gmail.com', // This really is supposed to be a String, not an array
            'Company Name'  => 'Alphabet',
            'Memberships' => array ('websites', 'google' ),
),
    'Facebook' => array (
            'Allowed Emails' => array ('@facebook.com','@facebook.co.uk' ),
            'Admin Emails' => 'markmark@facebook.com, shezzer@facebook.com', 
            'Company Name'  => 'Facebook Limited',
            'Memberships' => array ('websites', 'facebook' ),
),
    'Apple' => array (
            'Allowed Emails' => array ('@apple.com','@icloud.com' ),
            'Admin Emails' => 'timtheking@apple.com', 
            'Company Name'  => 'Apple Inc',
            'Memberships' => array ('computers', 'apple' ),
),
        'Dell2' => array (
            'Allowed Emails' => array ('@dell.com' ),
            'Admin Emails' => 'mikerulez1996@dell.com',
            'Company Name'  => 'Dell Computers',
            'Memberships' => array ('computers', 'dell' ),
)
);

I've managed to get a long way using array_filter but the below only works if the variable I've set (in this case 'google.com') is the first variable in the array.

Any thoughts much appreciated.

function setitem ($item){ return $item['Allowed Emails'][0] === '@google.com' ;}

$filteredarray = array_filter($array, setitem);


$toplevelarray = array_keys($filteredarray);

echo $toplevelarray[0];

Also I need some help passing the variable (in this case '@google.com' into the 'setitem' function as this won't be hard coded in. For some reason, I get an error if I try and do it the normal way.

Thanks in advance.

  • 写回答

1条回答 默认 最新

  • dougang6821 2017-06-10 23:53
    关注

    Nothing particular to do that:

    $result = []; 
    foreach ($array as $k => $v) {
        if ( in_array('@google.com', $v['Allowed Emails']) )
            $result[] = $k; 
    }
    
    print_r($result);
    

    If you already know that the key is unique use a string in place of an array for $result and use break to stop the loop.

    You can do the same with array_filter or array_reduce but it's slower.

    To pass a variable to a function, nothing magic one more time: add a parameter.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料