I have this situation:
$qty = array(1) {[0]=> array(1) { ["qty"]=> string(5) "35254" }
$price = array(1) {[0]=> array(1) { ["price"]=> string(5) "1000" }
How can I get this?
$res = array(1) {[0]=> array(1) { ["qty"]=> string(5) "35254" ["price"]=> string(5) "1000"}
Thanks for the answers
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" } }
$qty = array("qty"=>"35254" );
$price = array ( "price"=> "1000" );
$combine = array_merge($qty,$price);
var_dump($combine);
try with
$res = array_merge_recursive($qty, $price);
print_r($res);