Skip to content

Instantly share code, notes, and snippets.

@vamsiikrishna
Created January 23, 2017 09:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vamsiikrishna/57f726ec288069c4a79be226f5c4776e to your computer and use it in GitHub Desktop.
Save vamsiikrishna/57f726ec288069c4a79be226f5c4776e to your computer and use it in GitHub Desktop.
demo splat operator in PHP
function add($a, $b, $c) {
return $a + $b + $c;
}
$arr = [1,2,3];
echo add(...$arr);
//6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment