array merge php with same index

后端 未结 3 1005
长情又很酷
长情又很酷 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:10

    try with

    $res = array_merge_recursive($qty, $price);
    print_r($res);
    

提交回复
热议问题