从字符串为Mongo创建PHP数组

时间:2019-01-07 13:13:38

标签: php arrays mongodb laravel-5

我有一个LaravelMoloquent(Mongo)一起安装。 Mongo不一定是问题,当模型加载“ JSON”记录时,它将成为PHP关联数组。 我需要能够在模型中创建一个通过字符串返回数组元素的函数。

例如:

$search1 = 'folder1/folder2/folder3/item';
//would look like: $array['folder1'][folder2'][folder3']['item']
$search2 = 'folder1/picture1/picture'; 
//would look like: $array['folder1'][picture1']['picture']

echo getRecord($search1);
echo getRecord($search2);    

function getRecord($str='') {
  //this function take path as string and return array
  return $result;
}

我想我可以使用??运算符,但是我必须形成一个数组“ check”,意思是: 如果我有3个元素深或1个($array['1']['2']['3'])或5个($array['1']),我将如何形成$array['1']['2']['3']['4']['5']

我正在制作一个将项目或文件夹添加到Mongo的api。

输入"f1/f2/item"

我有这个功能:

echo print_r($j->_arrayBuilder('f1/f2/item'), true);
public function _arrayBuilder($folderPath)
{
    $ret = array();
    $arr = explode('/', $folderPath);
    Log::info("Path Array:\n" . print_r($arr, true));
    $x = count($arr) - 1;
    Log::info("Count: " . $x);
    for ($i = 0; $i <= $x; $i++) {
        Log::info("Element of arr: " . $arr[$i]);
        $ret = array($arr[$i] => $ret);
    }
    return $ret;
}

当前输出

Array
(
    [item] => Array
        (
            [f2] => Array
                (
                    [f1] => Array
                        (
                         )
                )
        )
)

期望输出:

Array
(
    [f1] => Array
        (
            [f2] => Array
                (
                    [item] => Array
                        (
                         )
                )
        )
)

注意:我已经尝试过PHP的array_reverse,它在此上不起作用。。多维和非数字。

谢谢。

1 个答案:

答案 0 :(得分:1)

如果我理解正确,那么您想要输入字符串f1/f2/f3/f4/f5/item并创建array("f1" => array("f2" => array("f3" => array("f4" => array("f5" => array("item" => array()))))))

为此,您可以使用与您尝试使用的功能接近的功能:

function buildArr($path) {
    $path = array_reverse(explode("/", $path)); // getting the path and reverse it
    $ret = array();
    foreach($path as $key)
        $ret = array($key => $ret);
    return $ret;
}

对于输入print_r(buildArr("f1/f2/item"));,它将打印:

Array
(
    [f1] => Array
        (
            [f2] => Array
                (
                    [item] => Array
                        (
                        )
                )
        )
)

希望您的意思是。如果不能发表评论