1.

What will be the output of the following PHP code?
<?php
$flowre1 = array("001"=>"Daffodil", "002"=>"Dahlia", "003"=>"Daisy", "004"=>"Dianella", "005"=>"Delphinium");
$flowre2 = array("006"=>"Daffodil", "007"=>"Dahlia", "008"=>"Daisy");
$Res = array_diff($flowre1, $flowre2);
print_r($Res);
?>

A. None of these
Answer» E.


Discussion

No Comment Found

Related MCQs