text 递归搜索JSON数组 - 按键获取值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 递归搜索JSON数组 - 按键获取值相关的知识,希望对你有一定的参考价值。

<?php


/// or since it is in general func

use Kit\General\GeneralFunc;

// then
GeneralFunc::recursiveFind($needle, 'key');
//////


// don't forget, i wrote my own version of it to get them ALL

GeneralFunc::recursiveFindAll($needle, 'key');
//////





public function recursiveFind(array $haystack, $needle)
{
    $iterator  = new \RecursiveArrayIterator($haystack);
    $recursive = new \RecursiveIteratorIterator(
        $iterator,
        \RecursiveIteratorIterator::SELF_FIRST
    );
    foreach ($recursive as $key => $value) {
        if ($key === $needle) {
            return $value;
        }
        
    }
}

// example usage:
$output['rel']= $this->recursiveFind($array,'synonym');

以上是关于text 递归搜索JSON数组 - 按键获取值的主要内容,如果未能解决你的问题,请参考以下文章

PHP 在多维数组中按键搜索值

多维数组中按键搜索值

JSON 可解码 - 按键搜索

如何在任何级别的json文档上按键获取值?

PostgreSQL的NoSQL特性

按键值对 JSON 数据进行排序