Answers for "print sum of postive number in array in php"

PHP
0

How to calculate the sum of values in a list PHP

$array = explode( ' ', $variable);
echo array_sum( $array);
Posted by: Guest on February-06-2021

Browse Popular Code Answers by Language