Files
php_8/functions/too_many_args.php
2022-05-10 22:29:05 +03:00

12 lines
352 B
PHP

<?php
function tooManyArgs($fst, $snd, $thd, $fth)
{
echo "Первый параметр: $fst<br />";
echo "Второй параметр: $snd<br />";
echo "Третий параметр: $thd<br />";
echo "Четвертый параметр: $fth<br />";
}
$items = ['PHP', 'Python', 'Ruby', 'JavaScript'];
tooManyArgs(...$items);