mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-04 02:07:59 +01:00
21 lines
334 B
Plaintext
21 lines
334 B
Plaintext
|
Function parameters
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
function test($a, &$b, Type $c, Type &$c, Type &... $d) {}
|
||
|
function test(... $foo) {}
|
||
|
function test(Type ... $foo) {}
|
||
|
function test(&... $foo) {}
|
||
|
-----
|
||
|
function test($a, &$b, Type $c, Type &$c, Type &... $d)
|
||
|
{
|
||
|
}
|
||
|
function test(... $foo)
|
||
|
{
|
||
|
}
|
||
|
function test(Type ... $foo)
|
||
|
{
|
||
|
}
|
||
|
function test(&... $foo)
|
||
|
{
|
||
|
}
|