Q. What is the result of the following PHP code?
Code:<?php
$arr = array(2, 1, 3);
echo(array_product($arr));
?>
β
Correct Answer: (C)
6
<?php
$arr = array(2, 1, 3);
echo(array_product($arr));
?>
You must be Logged in to update hint/solution