Q. What is the result of the following PHP code?
Code:
<?php
$age = array("alex"=>"18", "bob"=>"25", "emily"=>"55");
print_r(array_change_key_case($age, CASE_UPPER));
?>
β
Correct Answer: (B)
Array([ALEX] => 18, [BOB] => 25, [EMILY] => 55)