Examveda
Examveda

What will be the output of the following PHP code?
<?php
$number = array ("4", "hello", 2);
echo (array_sum ($number));
?>

A. 4hello2

B. 4

C. 2

D. 6

Answer: Option D

Solution(By Examveda Team)

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.

This Question Belongs to PHP >> Arrays

Join The Discussion

Related Questions on Arrays