php 将分隔字符串转换为数组键路径并赋值

up9lanfz  于 2023-02-21  发布在  PHP
关注(0)|答案(5)|浏览(136)

我有这样一个字符串:
$string = 'one/two/three/four';
我把它转换成一个数组
$keys = explode('/', $string);
该数组可以具有任意数量的元素,如1、2、5等。
如何将某个值赋给多维数组,但使用上面创建的$keys来标识插入位置?
例如:
$arr['one']['two']['three']['four'] = 'value';
如果这个问题令人困惑,我很抱歉,但我不知道如何更好地解释它

wmtdaxz3

wmtdaxz31#

这是一种非平凡的东西,因为你想要嵌套,但它应该像这样:

function insert_using_keys($arr, $keys, $value){
    // we're modifying a copy of $arr, but here
    // we obtain a reference to it. we move the
    // reference in order to set the values.
    $a = &$arr;

    while( count($keys) > 0 ){
        // get next first key
        $k = array_shift($keys);

        // if $a isn't an array already, make it one
        if(!is_array($a)){
            $a = array();
        }

        // move the reference deeper
        $a = &$a[$k];
    }
    $a = $value;

    // return a copy of $arr with the value set
    return $arr;
}
lbsnaicq

lbsnaicq2#

$string = 'one/two/three/four';
$keys = explode('/', $string);
$arr = array(); // some big array with lots of dimensions
$ref = &$arr;

while ($key = array_shift($keys)) {
    $ref = &$ref[$key];
}

$ref = 'value';

这是在做什么:

  • 使用变量$ref跟踪对$arr的当前维的引用。
  • 逐个循环$keys,引用当前基准电压源的$key元素。
  • 将值设置为最终参考。
jdgnovmf

jdgnovmf3#

你需要先确认键的存在,然后赋值。类似下面的代码应该可以工作(未测试):

function addValueByNestedKey(&$array, $keys, $value) {
    $branch = &$array;
    $key = array_shift($keys);
    // add keys, maintaining reference to latest branch:
    while(count($keys)) {
        $key = array_pop($keys);
        if(!array_key_exists($key, $branch) {
            $branch[$key] = array();
        }
        $branch = &$branch[$key];
    }
    $branch[$key] = $value;
}

// usage:
$arr = array();
$keys = explode('/', 'one/two/three/four');

addValueByNestedKey($arr, $keys, 'value');
omqzjyyz

omqzjyyz4#

很老套,但是:

function setValueByArrayKeys($array_keys, &$multi, $value) {
     $m = &$multi
     foreach ($array_keys as $k){
         $m = &$m[$k];
     }
     $m = $value;
}
1u4esq0p

1u4esq0p5#

$arr['one']['two']['three']['four'] = 'value';

    $string = 'one/two/three/four';
    $ExpCheck = explode("/", $string);
    $CheckVal = $arr;
    foreach($ExpCheck AS $eVal){
        $CheckVal = $CheckVal[$eVal]??false;
        if (!$CheckVal)
            break;
    }
    if ($CheckVal) {
        $val =$CheckVal;
    }

这会给予u数组中的值。

相关问题