Skip to content

Instantly share code, notes, and snippets.

@zx1986
Created June 29, 2012 07:23
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 zx1986/3016458 to your computer and use it in GitHub Desktop.
Save zx1986/3016458 to your computer and use it in GitHub Desktop.
PHP static var testing
<?php
function test()
{
static $count = 0;
$count++;
echo $count.' ';
if ($count < 10) {
test();
}
//$count--;
//echo '^'.$count.' ';
echo '$'.$count.' ';
}
test();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment