Skip to content

Instantly share code, notes, and snippets.

@przor3n
Created September 22, 2017 09:59
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 przor3n/51a871da5547f47ad81cafed67234441 to your computer and use it in GitHub Desktop.
Save przor3n/51a871da5547f47ad81cafed67234441 to your computer and use it in GitHub Desktop.
function testStatic($dupa){
static $i = 0;
static $last = 100;
echo $last;
return $dupa . " - " . $i++;
}
foreach (range(0,20) as $nn) {
echo testStatic($nn) . "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment