print sum of postive number in array in php code example
Example: How to calculate the sum of values in a list PHP
$array = explode( ' ', $variable);
echo array_sum( $array);
$array = explode( ' ', $variable);
echo array_sum( $array);