Home

What is the correct answer?

4

What will be the output of the following PHP code?
 <?php  $age = array(Peter=>35, Ben=>37, Joe=>43);
print_r(array_change_key_case($age, CASE_UPPER));
?>

A.

Array ( [Peter] => 35 [Ben] => 37 [Joe] => 43 )

B.

Array ( [peter] => 35 [ben] => 37 [joe] => 43 )

C.

Array ( [PETER] => 35 [BEN] => 37 [JOE] => 43 )

D.

Array ( [PeTeR] => 35 [BeN] => 37 [Joe] => 43 )

Correct Answer :

C.

Array ( [PETER] => 35 [BEN] => 37 [JOE] => 43 )


The array_change_key_case() function changes all keys in an array to lowercase or uppercase.

Related Questions

Which one of the following function is useful for producing a timestamp… The date() function returns ___ representation of the current date and/or… What will be the output of the following PHP code ? <?php define('GOOD_OCTAL',… What will be the output of the following PHP code ? <?php class Constants{… How many ways can a session data be stored? Which one of the following is the very first task executed by a session… Say you want to calculate the date 45 days from the present date which… What will be the output of the following PHP code ? <?php /*echo Hello… What will be the output of the following PHP code ? <?php $i = 0;while(++$i… What will be the output of the following PHP code ? <?php $i = 5;while… What will be the output of the following code?<?php $foo = 'Bob';… What does PHP stand for?i) Personal Home Pageii) Hypertext Preprocessoriii)… What will be the output of the following PHP code? <?php $cars = array(Volvo,… What will be the output of the following PHP code ? <?php define(GREETING,… What will be the output of the following PHP code ? <?php $i = 0;while… What will be the output of the following PHP code ? <?php define(NEW_GOOD_NAME_CONSTANT,… What will be the output of the following PHP code? <?php $age = array(Peter=>35,… What will be the output of the following PHP code ? <?php define(__LINE__,… What will be the output of the following PHP code ? <?php $color =… PHP files have a default file extension of.. Which directive determines how the session information will be stored? What will be the output of the following PHP code? <?php $fname = array(Peter,… What will be the output of the following code? If say date is 22/06/2013.… What will be the output of the following PHP code ? <?php $color1 =… What will be the output of the following PHP code ? <?php $i = 5;while… What will be the output of the following PHP code ? <?php $color1 =… Which of following variables can be assigned a value to it?i) $3helloii)… What will be the output of the following PHP code ? <?php $i = 0;while… What will be the output of the following PHP code ? <?php $color1 =… To create an object and set the date to JUNE 22, 2013, which one of the…