1.

What will be the output of the following PHP code?
<?php
$Employee = array("Ajit", "Rahul", "Ats");
$id = array("001", "002", "003");
$pro = array_combine($id, $Employee);
print_r($pro);
?>

A. Error
B. Nothing
C. None of these
Answer» B. Nothing


Discussion

No Comment Found