Search for highest key/index in an array

∥☆過路亽.° 提交于 2019-11-27 00:19:16

问题


How can I get with PHP the highest key/index in an array? I know how to do it for the values.

E.g. From this array I would like to get "10" as an integer value:

$arr = array( 1 => "A", 10 => "B", 5 => "C" );

I know how I could program it, but I was asking myself if there as a function for this as well.


回答1:


This should work fine

$arr = array( 1 => "A", 10 => "B", 5 => "C" );
max(array_keys($arr));



回答2:


You can get the maximum key this way:

<?php
$arr = array("a"=>"test", "b"=>"ztest");
$max = max(array_keys($arr));
?>



回答3:


$keys = array_keys($arr);
$keys = rsort($keys);

print $keys[0];

should print "10"




回答4:


I had a situation where I needed to obtain the next available key in an array, which is the highest+1.

For example, if the array is $data=['1'=>'something,'34'=>'something else'] then I needed to calculate 35 to add a new element to the array that had a key higher than any of the others. In the case of an empty array I needed 1 as next available key.

This is the solution that worked:

    $highest = 0;
    foreach($data as $idx=>$dummy)
    {
        if($idx > $highest)$highest=$idx;
    }
    $highest++;

It will work in all cases, empty array or not. If you only need to find the highest key rather than highest key + 1, delete the last line. You will then get a value of 0 if the array is empty.




回答5:


Try max(): http://php.net/manual/en/function.max.php See the first comment on that page



来源:https://stackoverflow.com/questions/6126066/search-for-highest-key-index-in-an-array

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!