Answers for "program to find the sum of elements in an array . PHP"

PHP
5

php sum array elements

<?php
$a=array(5,15,25);
echo array_sum($a);
?>
Posted by: Guest on August-06-2020
1

sum of the array elements in php

Return the sum of all the values in the array (5+15+25):

<?php
$a=array(5,15,25);
echo array_sum($a);
?>
Posted by: Guest on June-29-2020

Code answers related to "program to find the sum of elements in an array . PHP"

Browse Popular Code Answers by Language