Q. What will be the output of the following program?
Code:<?php $a = array(16, 5, 2); echo array_product($a); ?>
β
Correct Answer: (A)
160
<?php $a = array(16, 5, 2); echo array_product($a); ?>
You must be Logged in to update hint/solution