我的整个键都有一个包含空格的数组。这对于无法以空间为目标的其他程序进行定位存在问题,并且在键中包含空格是不好的做法。
我正在寻找能够移除键空间并用多维数组中的下划线替换的东西。最有可能必须是递归函数?
在另一个问题中找到类似的东西,但是关于替换值。
foreach ($all_regions as $key => $value){
$all_regions[$key] = strtolower(str_replace(' ', '_', $value));
}
非常需要这个复制但是对于键。 我遇到的问题是我可以想到如何引用键本身,因为如果你像上面的方法一样尝试push,它只会重新创建另一个带下划线的键。
阵列的一个片段,它就像它一样深。
Array
(
[0] => Array
(
[Line Identifier] => PID
[Set ID] => 1
[User ID] =>
[Requests] => Array
(
[0] => Array
(
[Line Identifier] => OBR
[Set ID] => 1
[Placer Order Number] => 021120091525
[Results] => Array
(
[0] => Array
(
[Line Identifier] => OBX
[Set ID] => 1
[1] => Array
(
[Line Identifier] => OBX
[Set ID] => 2
我已尝试过以下内容,但Key element cannot be a reference
private function fixArrayKeys($array){
if(is_array($array)){
foreach($array as &$key => $value){
if(!is_array($key))
$array[strtolower(str_replace(' ', '_', $key))] = $value;
else
fixArrayKeys($array);
}
} else {
return $array;
}
}
答案 0 :(得分:7)
function fixArrayKey(&$arr)
{
$arr=array_combine(array_map(function($str){return str_replace(" ","_",$str);},array_keys($arr)),array_values($arr));
foreach($arr as $key=>$val)
{
if(is_array($val)) fixArrayKey($arr[$key]);
}
}
测试如下:
$data=array("key 1"=>"abc","key 2"=>array("sub 1"=>"abc","sub 2"=>"def"),"key 3"=>"ghi");
print_r($data);
fixArrayKey($data);
print_r($data);
输出:
Array
(
[key 1] => abc
[key 2] => Array
(
[sub 1] => abc
[sub 2] => def
)
[key 3] => ghi
)
Array
(
[key_1] => abc
[key_2] => Array
(
[sub_1] => abc
[sub_2] => def
)
[key_3] => ghi
)
答案 1 :(得分:1)
为什么不首先从键中删除空格
foreach ($all_regions as $key => $value){
$key = strtolower(str_replace(' ', '_', $key));
$all_regions[$key] = strtolower(str_replace(' ', '_', $value));
}
答案 2 :(得分:0)
尝试下方,尚未测试,但请参阅主要差异
function fixArrayKeys(&$array)
{
if(is_array($array)){
foreach($array as &$key => $value){
if(!is_array($value))
$array[strtolower(str_replace(' ', '_', $key))] = $value;
else
fixArrayKeys(&$value);
}
} else {
return $array;
}
}