programming-examples/php/Basics/Program to find the sum of elements in an array..php
2019-11-18 14:44:36 +01:00

6 lines
68 B
PHP

<?php
$arr = array(10,20,30,'a');
echo array_sum($arr);
?>