dsiuy42084 2011-08-25 07:52
浏览 50
已采纳

array_key_exists表示数组中的复合键

How do I check to see if a compound key exists with array_key_exists such as

$myarr['ind1']['ind2']

Would like to see if the key ['ind1']['ind2'] exists in $myarr.

I googled this and looked at some similar answers but couldn't find anything.

  • 写回答

2条回答 默认 最新

  • dqmq0654 2011-08-25 08:14
    关注

    You can make use of issetDocs to check for an array member that not equals NULL, which is the case for a compound array and safe to assume in your case:

    if (isset($myarr['ind1']) && array_key_exists('ind2', $myarr['ind1'])
    {
       ...
    }
    

    If $myarr['ind2'] potentially never equals to NULL you can do the following, which might show better what you're trying to check:

    if (isset($myarr['ind1']['ind2']))
    {
       ...
    }
    

    This checks the compound key does exists and is not NULL.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。