php-获取关联数组的数字索引

我有一个关联数组,我需要找到一个键的数字位置。我可以手动遍历数组以找到它,但是有没有更好的方法内置到PHP中呢?

$a = array(

'blue' => 'nice',

'car' => 'fast',

'number' => 'none'

);

// echo (find numeric index of $a['car']); // output: 1

回答:

echo array_search("car",array_keys($a));

以上是 php-获取关联数组的数字索引 的全部内容, 来源链接: utcz.com/qa/413579.html

回到顶部