gpt4 book ai didi

PHP - 获取数组值的键名

转载 作者:IT老高 更新时间:2023-10-28 11:46:15 27 4
gpt4 key购买 nike

我有一个数组如下:

function example() {
/* some stuff here that pushes items with
dynamically created key strings into an array */

return array( // now lets pretend it returns the created array
'firstStringName' => $whatEver,
'secondStringName' => $somethingElse
);
}

$arr = example();

// now I know that $arr contains $arr['firstStringName'];

我需要找出 $arr['firstStringName'] 的索引,以便我能够遍历 array_keys($arr) 并返回 key 字符串'firstStringName' 按其索引。我该怎么做?

最佳答案

如果您有一个值并想找到 key ,请使用 array_search()像这样:

$arr = array ('first' => 'a', 'second' => 'b', );
$key = array_search ('a', $arr);

$key 现在将包含值 'a' 的键(即 'first')。

关于PHP - 获取数组值的键名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8729410/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com