array_sum: Calculate the sum of values in an array
<?php $grades = array(42,"hello",42); $total = array_sum($grades); print $total; ?>