vote up 2 vote down star

How would one create a Singleton class using PHP5 classes?

flag

4 Answers

vote up 8 vote down check
/**
 * Singleton class
 *
 */
class UserFactory
{
	/**
	 * Call this method to get singleton
	 *
	 * @return UserFactory
	 */
	public static function Instance()
	{
		static $inst = null;
		if ($inst == null)
			$inst = new UserFactory();
		return $inst;
	}

	/**
	 * Private ctor so nobody else can instance it
	 *
	 */
	private function __construct()
	{

	}
}

To use:

$fact = UserFactory::Instance();
$fact2 = UserFactory::Instance();

$fact == $fact2;

But:

$fact = new UserFactory()

Throws an error

:)

link|flag
to compare the two instances you should use === rather than ==. == will return true if $fact1 and $fact2 are both of the same class, but === only returns true if they are both the same instance of the same object. – Keith Twombley Oct 15 '08 at 1:02
vote up 5 vote down

You probably should add a private __clone() method to disallow cloning of an instance.

private function __clone() {}

If you don't include this method the following gets possible

$inst1=UserFactory::Instance(); // to stick with the example provided above
$inst2=clone $inst1;

now $inst1 !== $inst2 - they are not the same instance any more.

link|flag
vote up 3 vote down

Go here for some more patterns:

http://www.fluffycat.com/PHP-Design-Patterns/

link|flag
vote up 0 vote down

It might be the correct answer to say "don't do it". See the related question What is so bad about Singletons. There are some good links to relevant articles in there.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.