我正在构建一个函数,我想从 db 中检索键/值对,它就像$result=array($key=>$value);
当我使用 this 时$result
,在一个需要在其参数中包含一个数组的对象中
function Foo($result) { array ('superkey'=>$result); }
这认为 $result 包含多个这样的数组:
Array
(
[key1] => value1
)
Array
(
[key3] => value2
)
Array
(
[key3] => value3
)
Array
(
[key4] => value4
)
但我希望将其视为一个数组:
Array
(
[key1] => value1
[key3] => value2
[key3] => value3
[key4] => value4
)
谁能帮我吗?