Skip to content

Instantly share code, notes, and snippets.

@iluuu1994
Last active April 26, 2021 17:52
Show Gist options
  • Save iluuu1994/acd04efb2454fa228202bedd92c6cc6c to your computer and use it in GitHub Desktop.
Save iluuu1994/acd04efb2454fa228202bedd92c6cc6c to your computer and use it in GitHub Desktop.
--TEST--
Named arguments in varargs.
--FILE--
<?php
function dump(...$values): void {
var_dump($values);
}
$p = dump('Foo', ?, bar: 'Bar');
$p('Baz', qux: 'Qux', quux: 'Quux');
?>
--EXPECT--
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment