Skip to content

Instantly share code, notes, and snippets.

@Twipped
Created March 24, 2012 00:43
Show Gist options
  • Select an option

  • Save Twipped/2176817 to your computer and use it in GitHub Desktop.

Select an option

Save Twipped/2176817 to your computer and use it in GitHub Desktop.
How many different ways can we use "static"?
static function Q() {
static $o;
if (!$o) $o = new static();
return $o;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment