mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
10 lines
163 B
PHP
10 lines
163 B
PHP
<?php
|
|
function multiple(int $carry, int $item) : int
|
|
{
|
|
return $carry * $item;
|
|
}
|
|
|
|
$arr = [1, 2, 3, 4, 5];
|
|
|
|
echo array_reduce($arr, 'multiple', $arr[0]); // 120
|