Display the drop-down list

Test of array_change_key_case()

Example #1 : test success
Example #1
$input = [
  
=> [
    
'FirSt' => 1,
    
'SecOnd' => 4,
  ],
  
=> 'CASE_UPPER',
]
$expected_output = $test_output
$test_output = [
  
'result' => [
    
'array' => [
      
'FIRST' => 1,
      
'SECOND' => 4,
    ],
  ],
  
'php_version' => '7.1.33 Linux x86_64',
]