Answers for "php get the sum of each value in an array"

PHP
5

php sum array elements

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

Code answers related to "php get the sum of each value in an array"

Browse Popular Code Answers by Language