array merge php with same index

后端 未结 3 1006
长情又很酷
长情又很酷 2021-01-25 14:44

I have this situation:

$qty = array(1) {[0]=> array(1) { [\"qty\"]=> string(5) \"35254\" }
$price = array(1) {[0]=> array(1) { [\"price\"]=> string(5         


        
3条回答
  •  醉话见心
    2021-01-25 15:08

    May be it's that you want:

    $res = array();
    foreach($qty as $k => $v){
        $res[$k] = array_merge($qty[$k],$price[$k]);
    }
    

    The result :

    array(1) {[0] => array(2) { 'qty' => string(5) "35254" 'price' => string(4) "1000" } }
    

提交回复
热议问题