Discussion :: PHP MCQs
-
What will be the output of the following PHP code?
< ?php $fruits = array ("apple", "orange", array ("pear", "mango"), "banana"); echo (count($fruits, 1)); ?>
Answer : Option D
Explanation :
The array entity holding pear and mango is counted as an item, just as its contents are.
Be The First To Comment