Discussion :: PHP MCQs
-
What will be the output of the following PHP code?
< ?php $number = array ("4", "hello", 2); echo (array_sum ($number)); ?>
Answer : Option D
Explanation :
The array_sum() function add all the values of the input array together, returning the final sum. If a string datatype is found, it'll be ignored.
Be The First To Comment