douwen3500 2016-12-24 02:12 采纳率: 0%
浏览 36
已采纳

如何在php中使用键存储每个数组值

I want to store my variables in an array alongside their keys like :

filter : [ 
"0" : "test",
"1" : "you",
"2" : "php"
]

I have filter[] array in the first place and each time with update request I want to add a value to this array with it's key, automate created key.

I've tried this two methods but they are not storing variable keys:

//$seat_filters = filter array fetched from db

$filters = array($request->input('filter'));

$filters_array = array_merge($seat_filters, $filters);

When I check the result of $filters_array I get :

filter : [
"test",
"you",
"php"
]

Same thing happens in below method of storing values in array :

 array_push($seat_filters ,$request->input('filter'));

Only second method is shorter. FYI : This results are in JSON format.

  • 写回答

3条回答 默认 最新

  • dongxun6458 2016-12-24 02:34
    关注

    Though I don't understand what all these for, but still some advices.

    So you have an array like:

    $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"]]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部