What will be the output of the following PHP code?
<?php
$fname = array("Peter", "Ben", "Joe");
$age = array("35", "37", "43");
$c = array_combine($age, $fname);
print_r($c);
?>
- Array ( Peter Ben Joe )
- Array ( [Peter] => 35 [Ben] => 37 [Joe] => 43 )
- Array ( 35 37 43 )
- Array ( [35] => Peter [37] => Ben [43] => Joe )
(d).Array ( [35] => Peter [37] => Ben [43] => Joe )
need an explanation for this answer? contact us directly to get an explanation for this answer