6 lines
68 B
PHP
6 lines
68 B
PHP
<?php
|
|
|
|
$arr = array(10,20,30,'a');
|
|
echo array_sum($arr);
|
|
|
|
?>
|