mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
10 lines
184 B
PHP
10 lines
184 B
PHP
<?php
|
|
function echoList(...$items)
|
|
{
|
|
foreach ($items as $v) {
|
|
echo "$v<br />\n"; // выводим элемент
|
|
}
|
|
}
|
|
|
|
echoList('PHP', 'Python', 'Ruby', 'JavaScript');
|