Examveda
Examveda

What will be the output of the following PHP code?
<?php
$fruits = array ("apple", "orange", array ("pear", "mango"), "banana");
echo (count($fruits, 1));
?>

A. 3

B. 4

C. 5

D. 6

Answer: Option D

Solution(By Examveda Team)

The array entity holding pear and mango is counted as an item, just as its contents are.

This Question Belongs to PHP >> Arrays

Join The Discussion

Related Questions on Arrays