Skip to content

Instantly share code, notes, and snippets.

@tjlytle
Created June 23, 2011 04:22
Show Gist options
  • Save tjlytle/1041899 to your computer and use it in GitHub Desktop.
Save tjlytle/1041899 to your computer and use it in GitHub Desktop.
Example singleton
<?php
class Singleton
{
public static function getInstance()
{
static $instance;
if(empty($instance)){
$class = get_called_class();
$instance = new $class;
}
return $instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment