Somme Array PHP

$a = array(2, 4, 6, 8);

echo "somme = " . array_sum($a);

somme = 20 
Gorgeous Gemsbok