1.

What will be the output of the following PHP code?
<?php
$EmpName = array("Ajit Kumar Gupta", "Ats Yogi", "Aju Jayaraj");
$Salary = array("35000", "37000", "43000");
$Result = array_combine($EmpName, $Salary);
print_r($Result);
?>

A. None of these
Answer» E.


Discussion

No Comment Found

Related MCQs