1

我有一个像下面这样的数组,数组的大小和元素不是固定的,它完全是动态生成的

array(
    'marketplace'   => array(
        'browse request' => array('request type 1', 'request type 2'),
        'browse lab',
    ),
    'marketplace2'  => array('browse request2', 'browse lab2'),
    'submitrequest' => array(''),
    'aboutus'       => array('')
)

我想获取从给定子节点到根节点的路径

让我们说,'request type 2'那么路径将是'marketplace -> browse request -> request type 2'

还有一个'submitrequest'然后路径将是'submitrequest'

任何帮助将不胜感激。谢谢

4

1 回答 1

0

如果您的输入是唯一的字符串,因此可以清楚地识别,您只需将值(以及您添加的:键)与字符串进行比较,如果找到,则获取路径:

$string = 'request type 2';

$path = NULL;

$it = new RecursiveIteratorIterator(
    new RecursiveArrayIterator($array), RecursiveIteratorIterator::SELF_FIRST
);
foreach ($it as $key => $value) {
    if ($key !== $string and $value !== $string) {
        continue;
    }

    $path = [$string];
    for ($count = $it->getDepth(); $count && $count--;) {
        array_unshift($path, $it->getSubIterator($count)->key());
    }
    $path = implode(' -> ', $path);
    break;
}

var_dump($path); # string(47) "marketplace -> browse request -> request type 2"

类似/相关问答:


较早的答案:您可能在这里遗漏了一些要点。首先,您需要清楚地识别要查找路径的元素/节点(对象)。

你没有在你的问题中概述你是如何做到这一点的,你只给出了数组,然后给出了字符串。

如果您的意思是引用节点并且想要获取它的路径,我会在这个答案中举例说明它是如何工作的。

首先,让我们引用对象(在一般意义上)以获取路径:

// specify the node to search for
$node = &$array['marketplace']['browse request'][1];

由于 PHP 不允许识别字符串 - 并且您的数组可能多次包含相同的字符串 - 此节点需要转换为可识别的对象。为了保留原始字符串值,将其存储到另一个变量中:

// make the node identifiable (so that it can be searched independent to it's string value, e.g. duplicates)
$string = "$node";
$node   = new stdClass();

现在您的原始数组具有要搜索的节点以获取可识别的路径。print_r 现在看起来如下(缩短):

Array
(
    [marketplace] => Array
        (
            [browse request] => Array
                (
                    [0] => request type 1
                    [1] => stdClass Object
                    ...

这是必要的,因为如果我们搜索数组并找到对象,并且我们跟踪到目前为止在搜索中使用的路径,我们在找到该对象时获得了路径。

这正是我们现在在迭代器的帮助下所做的。PHP 已经知道如何遍历数组,并且在我们自己的一点帮助下,这甚至适用于包含对象的数组:

class MyRecursiveIterator extends RecursiveArrayIterator
{
    public function hasChildren() {
        return is_array($this->current());
    }
}

将其RecursiveIterator与 PHP 的标准树遍历一起使用,RecursiveIteratorIterator我们可以在找到该对象时生成路径:

$path = NULL;

$it   = new RecursiveIteratorIterator(new MyRecursiveIterator($array));
foreach ($it as $value) {
    if ($value !== $node) {
        continue;
    }

    $path = [$string];
    for ($count = $it->getDepth(); $count && $count--;) {
        array_unshift($path, $it->getSubIterator($count)->key());
    }
    $path = implode(' -> ', $path);
    break;
}

var_dump($path); # string(47) "marketplace -> browse request -> request type 2"

完整示例代码一目了然(Demo):

<?php
/**
 * get path from child node to parent php array
 * @link https://stackoverflow.com/a/18696550/367456
 */

class MyRecursiveIterator extends RecursiveArrayIterator
{
    public function hasChildren()
    {
        return is_array($this->current());
    }
}


$array = array(
    'marketplace'   => array(
        'browse request' => array('request type 1', 'request type 2'),
        'browse lab',
    ),
    'marketplace2'  => array('browse request2', 'browse lab2'),
    'submitrequest' => array(''),
    'aboutus'       => array('')
);

// specify the node to search for
$node = & $array['marketplace']['browse request'][1];

// make the node identifiable (so that it can be searched independent to it's string value, e.g. duplicates)
$string = "$node";
$node   = new stdClass();

$path = NULL;

$it   = new RecursiveIteratorIterator(new MyRecursiveIterator($array));
foreach ($it as $value) {
    if ($value !== $node) {
        continue;
    }

    $path = [$string];
    for ($count = $it->getDepth(); $count && $count--;) {
        array_unshift($path, $it->getSubIterator($count)->key());
    }
    $path = implode(' -> ', $path);
    break;
}

var_dump($path); # string(47) "marketplace -> browse request -> request type 2"
于 2013-09-09T10:49:12.950 回答