Sign in
apache
/
netbeans
/
419f65eb0cccf624032c1c4925bf8d58069043ae
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
testVariadicFunctions_01.php
blob: 5bb3b06c66146ed4c101a9c20c7cd354cb83d299 [
file
] [
log
] [
blame
]
<?
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
);
?>