Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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);
?>
 
PREVIOUS NEXT
Tagged: #sum #array #elements #php
ADD COMMENT
Topic
Name
5+8 =