Answers for "how do i count the sum of something in php"

PHP
6

php sum array elements

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

php increment sum

$sum+= $add;
Posted by: Guest on September-30-2021

Code answers related to "how do i count the sum of something in php"

Browse Popular Code Answers by Language