How to calculate the sum of values in a list PHP

PHP
$array = explode( ' ', $variable);
echo array_sum( $array);
Source

Also in PHP: