1.

What will be the output of the following PHP code ?
<?php
$Student = array("Ajit" => "23", "Rahul" => "22","Ats" => "23");
array_pop($Student);
print_r(array_change_key_case($Student, CASE_UPPER));
?>

A. Error
B. Nothing
C. None of these
Answer» E.


Discussion

No Comment Found

Related MCQs