我正在尝试在PHP的嵌套关联数组中搜索值,就像array_search但嵌套的一样.我需要所有导致该特定值的键.
我在SO上没有看到任何关于此特定功能寻求帮助的信息,所以现在我要询问.其他示例似乎返回数组中的所有值,而不仅仅是返回单个键/值对的路径.
解决方法:
function array_search_path($needle, array $haystack, array $path = []) {
foreach ($haystack as $key => $value) {
$currentPath = array_merge($path, [$key]);
if (is_array($value) && $result = array_search_path($needle, $value, $currentPath)) {
return $result;
} else if ($value === $needle) {
return $currentPath;
}
}
return false;
}
$arr = [
'foo' => 'bar',
'baz' => [
'test' => 42,
'here' => [
'is' => [
'the' => 'path'
]
],
'wrong' => 'turn'
]
];
print_r(array_search_path('path', $arr));
// Array
// (
// [0] => baz
// [1] => here
// [2] => is
// [3] => the
// )
标签:php,arrays,recursion
来源: https://codeday.me/bug/20191011/1889542.html