array merge php with same index

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

    $qty = array("qty"=>"35254" );
    $price = array ( "price"=> "1000" );
    
    $combine = array_merge($qty,$price);
    var_dump($combine);
    

提交回复
热议问题