<?php $a = array( 1 => array( 'test' => 3 ) ); $b = array( 1 => array( 'test2' => 3 ) ); $c = array_replace_recursive( $a, $b ); var_dump( $c );
You have javascript disabled. You will not be able to edit any code.