mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-29 12:52:43 +00:00
12 lines
352 B
PHP
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);
|