Skip to content

Instantly share code, notes, and snippets.

@suzuken
Created September 27, 2016 06:30
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 suzuken/dce5ec64a5e3cb4732a0f3c8a47bd18d to your computer and use it in GitHub Desktop.
Save suzuken/dce5ec64a5e3cb4732a0f3c8a47bd18d to your computer and use it in GitHub Desktop.
<?php
function sum() {
$sum = 0;
foreach (func_get_args() as $arg) {
$sum += $arg;
}
return $sum;
}
printf("%d\n", sum(1, 2));
printf("%d\n", sum(1, 2, 3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment