gpt4 book ai didi

php - 基于数组键将平面 PHP 数组转换为嵌套数组?

转载 作者:可可西里 更新时间:2023-10-31 22:47:37 25 4
gpt4 key购买 nike

我需要将其中数组键指示结构的平面数组转换为父元素变为元素零的嵌套数组,即在示例中:

$education['x[1]'] = 'Georgia Tech';

需要转换为:

$education[1][0] = 'Georgia Tech';

这是一个示例输入数组:

$education = array(
'x[1]' => 'Georgia Tech',
'x[1][1]' => 'Mechanical Engineering',
'x[1][2]' => 'Computer Science',
'x[2]' => 'Agnes Scott',
'x[2][1]' => 'Religious History',
'x[2][2]' => 'Women\'s Studies',
'x[3]' => 'Georgia State',
'x[3][1]' => 'Business Administration',
);

输出应该是这样的:

$education => array(
1 => array(
0 => 'Georgia Tech',
1 => array( 0 => 'Mechanical Engineering' ),
2 => array( 0 => 'Computer Science' ),
),
2 => array(
0 => 'Agnes Scott',
1 => array( 0 => 'Religious History' ),
2 => array( 0 => 'Women\'s Studies' ),
),
3 => array(
0 => 'Georgia State',
1 => array( 0 => 'Business Administration' ),
),
);

我已经用头撞墙好几个小时了,但仍然无法正常工作。我想我已经看得太久了。提前致谢。

附言它应该是完全可嵌套的,即它应该能够转换如下所示的键:

x[1][2][3][4][5][6] 

附言@Joseph Silber 有一个聪明的解决方案,但不幸的是,使用 eval() 不是一个选项,因为它是一个 WordPress 插件,WordPress 社区正试图杜绝使用 eval().

最佳答案

这里有一些代码可以处理您最初提议的输出内容。

/**
* Give it and array, and an array of parents, it will decent into the
* nested arrays and set the value.
*/
function set_nested_value(array &$arr, array $ancestors, $value) {
$current = &$arr;
foreach ($ancestors as $key) {

// To handle the original input, if an item is not an array,
// replace it with an array with the value as the first item.
if (!is_array($current)) {
$current = array( $current);
}

if (!array_key_exists($key, $current)) {
$current[$key] = array();
}
$current = &$current[$key];
}

$current = $value;
}


$education = array(
'x[1]' => 'Georgia Tech',
'x[1][1]' => 'Mechanical Engineering',
'x[1][2]' => 'Computer Science',
'x[2]' => 'Agnes Scott',
'x[2][1]' => 'Religious History',
'x[2][2]' => 'Women\'s Studies',
'x[3]' => 'Georgia State',
'x[3][1]' => 'Business Administration',
);

$neweducation = array();

foreach ($education as $path => $value) {
$ancestors = explode('][', substr($path, 2, -1));
set_nested_value($neweducation, $ancestors, $value);
}

基本上,将您的数组键拆分为一个很好的祖先键数组,然后使用一个很好的函数将这些父项放入 $neweducation 数组中,并设置值。

如果您希望更新后的帖子具有输出,请将其添加到 foreach 循环中带有“explode”的行之后。

$ancestors[] = 0;

关于php - 基于数组键将平面 PHP 数组转换为嵌套数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7116796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com