PHP Arrays
What will be the output of the following PHP code?
$fruits = array ("apple", "mango", "peach", "pear", "orange");
$subset = array_slice ($fruits, 2);
print_r ($subset);

Array ( [0] => peach )
Array ( [0] => peach [1] => pear [2] => orange )
Array ( [0] => apple [1] => mango [2] => peach )
Array ( [0] => apple [1] => mango )

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code ?
$age = array("Harry" => "21", "Ron" => "23","Malfoy" => "21");
array_change_key_case($age, CASE_UPPER);
array_pop($age);
print_r($age);

Array ( [Harry] => 21 [Ron] => 23 [Malfoy] => 21 )
Array ( [Harry] => 21 [Ron] => 23 )
Array ( [HARRY] => 21 [RON] => 23 )
Array ( [HARRY] => 21 [RON] => 23 [MALFOY] => 21 )

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code ?
$a1 = array("a" => "red", "b" => "green", "c" => "blue", "d" => "yellow");
$a2 = array("e" => "red","f" => "green", "g" => "blue");
$result = array_intersect($a1, $a2);
print_r($result);

Array ( [a] => red [b] => green [c] => blue [d] => yellow [e] => red [f] => green [g] => blue )
Array ( [a] => red [b] => green [c] => blue [d] => yellow )
Array ( [a] => red [b] => green [c] => blue )
Array ( [e] => red [f] => green [g] => blue )

ANSWER DOWNLOAD EXAMIANS APP