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 )
Array ( [e] => red [f] => green [g] => blue )
Array ( [a] => red [b] => green [c] => blue [d] => yellow )
Array ( [a] => red [b] => green [c] => blue [d] => yellow [e] => red [f] => green [g] => blue )

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$fname = array("Peter", "Ben", "Joe");
$age = array("35", "37", "43");
$c = array_combine($fname, $age);
print_r($c);

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

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code ?
$city_west = array("NYC", "London");
$city_east = array("Mumbai", "Beijing");
print_r(array_replace($city_west, $city_east));

Array ( [0] => Mumbai [1] => Beijing )
Array ( [1] => Mumbai [0] => Beijing )
Array ( [1] => NYC [0] => London )
Array ( [0] => NYC [1] => London )

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");
$result = array_flip($a1);
print_r($result);

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

ANSWER DOWNLOAD EXAMIANS APP