PHP Source:
<
!DOCTYPE
html
>
<
html
>
<
body
>
<?php
$pets=
array
(
"a"
=>
"Cat"
,
"B"
=>
"Dog"
,
"c"
=>
"Horse"
,
"b"
=>
"Bird"
);
print_r(array_change_key_case($pets,CASE_UPPER));
?>
<
/body
>
<
/html
>
Result:
Privacy Policy