A
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));
?>
$age = array("alex"=>"18", "bob"=>"25", "emily"=>"55");
print_r(array_change_key_case($age, CASE_UPPER));
?>
- Correct Answer - Option(B)
- Views: 12
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.