TypePHP 编译器 https://swoole.com/aot/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
245 B

--TEST--
variadic args
--FILE--
<?php
function test($a, $b, int...$args)
{
var_dump($a, $b, $args);
}
function main()
{
test(1, 2, 3, 4, 5);
}
?>
--EXPECT--
int(1)
int(2)
array(3) {
[0]=>
int(3)
[1]=>
int(4)
[2]=>
int(5)
}