Skip to content

Instantly share code, notes, and snippets.

@jkudish
Last active December 16, 2015 11:58
Show Gist options
  • Save jkudish/5430841 to your computer and use it in GitHub Desktop.
Save jkudish/5430841 to your computer and use it in GitHub Desktop.
This is an example of a singleton
<?php
My_Class {
private static $instance;
public static function instance() {
if ( isset( self::$instance ) )
return self::$instance;
self::$instance = new self;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment