Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
argumentUnpacking_01.php
blob: 44406db179d417cb42d530f26fef1963e8057391 [
file
]
<?
php
function
add
(
$a
,
$b
,
$c
)
{
return
$a
+
$b
+
$c
;
}
$operators
=
[
2
,
3
];
echo add
(
1
,
...
$operators
);
?>