mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
f3e5bbe6f3
Per RFC: https://wiki.php.net/rfc/arrow_functions_v2 Co-authored-by: Levi Morrison <levim@php.net> Co-authored-by: Bob Weinand <bobwei9@hotmail.com>
16 lines
204 B
PHP
16 lines
204 B
PHP
--TEST--
|
|
Argument unpacking with many arguments
|
|
--FILE--
|
|
<?php
|
|
|
|
function f(...$args) {
|
|
var_dump(count($args));
|
|
}
|
|
|
|
$array = array_fill(0, 10000, 42);
|
|
f(...$array, ...$array);
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(20000)
|