php-src/Zend/tests/arg_unpack/many_args.phpt
Nikita Popov f3e5bbe6f3 Implement arrow functions
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>
2019-05-02 15:04:03 +02:00

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)