1.

What will be the output of the following PHP code?
$cars = array("Datsun", "Jeep", "Lada", "Spyker");
$car = preg_grep("/^L/", $cars);
print_r($car);
?>

A. None of these
Answer» B.


Discussion

No Comment Found

Related MCQs