已关闭。此问题需要details or clarity。目前不接受回答。
**要改进此问题吗?**通过editing this post添加详细信息并阐明问题。
7天前关闭
Improve this question的
我有这个数组:
$input = ['a', 'b', 'c', 'd'];
字符串
输出应为:
$output = convertArrayValues($input, 'final');
$output['a']['b']['c']['d'] = 'final;
型
我需要convertArrayValues()方法的代码,它将完成转换工作:
$input = ['a', 'b', 'c', 'd'];
型
进入:
$output['a']['b']['c']['d'] = 'final;
型
转储数组输入:
array:4 [
0 => "a"
1 => "b"
2 => "c"
3 => "d"
]
型
转储数组输出:
array:1 [
"a" => array:1 [
"b" => array:1 [
"c" => array:1 [
"d" => 'final
]
]
]
]
型
1条答案
按热度按时间ozxc1zmp1#
这个有用吗
个字符