Files
php_8/arrays/array_sum.php
2022-07-21 08:57:43 +03:00

4 lines
58 B
PHP

<?php
$arr = [1, 2, 3, 4, 5];
echo array_sum($arr); // 15