胖鸭 2008-10-05 23:01 采纳率: 50%
浏览 439
已采纳

如何检查 PHP 数组是关联的还是顺序的?

PHP treats all arrays as associative, so there aren't any built in functions. Can anyone recommend a fairly efficient way to check if an array contains only numeric keys?

Basically, I want to be able to differentiate between this:

$sequentialArray = array('apple', 'orange', 'tomato', 'carrot');

and this:

$assocArray = array('fruit1' => 'apple', 
                    'fruit2' => 'orange', 
                    'veg1' => 'tomato', 
                    'veg2' => 'carrot');

转载于:https://stackoverflow.com/questions/173400/how-to-check-if-php-array-is-associative-or-sequential

  • 写回答

25条回答 默认 最新

  • 狐狸.fox 2012-11-22 18:51
    关注

    You have asked two questions that are not quite equivalent:

    • Firstly, how to determine whether an array has only numeric keys
    • Secondly, how to determine whether an array has sequential numeric keys, starting from 0

    Consider which of these behaviours you actually need. (It may be that either will do for your purposes.)

    The first question (simply checking that all keys are numeric) is answered well by Captain kurO.

    For the second question (checking whether the array is zero-indexed and sequential), you can use the following function:

    function isAssoc(array $arr)
    {
        if (array() === $arr) return false;
        return array_keys($arr) !== range(0, count($arr) - 1);
    }
    
    var_dump(isAssoc(array('a', 'b', 'c'))); // false
    var_dump(isAssoc(array("0" => 'a', "1" => 'b', "2" => 'c'))); // false
    var_dump(isAssoc(array("1" => 'a', "0" => 'b', "2" => 'c'))); // true
    var_dump(isAssoc(array("a" => 'a', "b" => 'b', "c" => 'c'))); // true
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(24条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部