programming-examples/php/_Basics/Program to find the sum of elements in an array..php

6 lines
68 B
PHP
Raw Normal View History

2019-11-15 12:59:38 +01:00
<?php
$arr = array(10,20,30,'a');
echo array_sum($arr);
?>