Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
testVariadicFunctions_02.php
blob: 513c925222512357cc4780c960c3da98ff6b8df2 [
file
]
<?
php
function
f
(
$req
,
$opt
=
null
,
&...
$params
)
{
// $params is an array containing the remaining arguments.
}
f
(
1
);
f
(
1
,
2
);
f
(
1
,
2
,
3
);
f
(
1
,
2
,
3
,
4
);
?>