Display the drop-down list

Test of array_merge_recursive()

Example #1 : test success
Example #1
$input = [
  
=> [
    
'color' => [
      
'favorite' => 'red',
    ],
    
=> 5,
  ],
  
=> [
    
=> 10,
    
'color' => [
      
'favorite' => 'green',
      
=> 'blue',
    ],
  ],
]
$expected_output = $test_output
$test_output = [
  
'result' => [
    
'array' => [
      
'color' => [
        
'favorite' => [
          
=> 'red',
          
=> 'green',
        ],
        
=> 'blue',
      ],
      
=> 5,
      
=> 10,
    ],
  ],
  
'php_version' => '7.1.33 Linux x86_64',
]