Advertisement
Guest User

object class self instance

a guest
Jul 27th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. public static function get_instance() {
  2.        if ( ! isset( self::$instance ) ) {
  3.            self::$instance = new self();
  4.        }
  5.        return self::$instance;
  6.    }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement