我想将变量存储在一个数组旁边,如:
filter : [
"0" : "test",
"1" : "you",
"2" : "php"
]
我首先有filter[]
数组,每次都有更新请求我想用它的键为这个数组添加一个值,自动创建密钥。
我尝试过这两种方法,但它们没有存储变量键:
//$seat_filters = filter array fetched from db
$filters = array($request->input('filter'));
$filters_array = array_merge($seat_filters, $filters);
当我检查$filters_array
的结果时,我得到了:
filter : [
"test",
"you",
"php"
]
以下在数组中存储值的方法也是如此:
array_push($seat_filters ,$request->input('filter'));
只有第二种方法更短。 仅供参考:此结果采用JSON格式。
答案 0 :(得分:2)
虽然我不明白所有这些,但仍有一些建议。
所以你有一个像:
这样的数组$a = ["test","you","php"];
// though it's indexes are not visible - they exist
$filter = [];
// you can see indexes in this `foreach`
foreach ($a as $k => $v) {
echo 'Key is ', $k, '; value is ', $v;
// now you can add both values to your filter
$filter[] = [$k, $v];
}
print_r($filter);
echo json_encode($filter); // [[0,"test"],[1,"you"],[2,"php"]]
答案 1 :(得分:1)
将密钥保存在数组中:
$output = array_map(function($v, $k){return[$k, $v];}, $array);
答案 2 :(得分:1)
在php中尝试此方法。
array_combine()