mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-25 17:13:08 +00:00
10 lines
206 B
PHP
10 lines
206 B
PHP
<?php
|
|
function echoList($x, $y, ...$items)
|
|
{
|
|
echo $x; // PHP
|
|
echo $y; // Python
|
|
var_dump($items); // ['Ruby', 'JavaScript']
|
|
}
|
|
|
|
echoList('PHP', 'Python', 'Ruby', 'JavaScript');
|