Fungsi php array_sum ()

<?php
$a=array(5,15,25);
echo array_sum($a);
?>
Xfantasia