How would one create a Singleton class using PHP5 classes?
|
To use:
$fact == $fact2; But:
Throws an error :) |
|||||||||||
|
|
PHP 5.3 allows the creation of an inheritable Singleton class via late static binding:
This solves the problem, that prior to PHP 5.3 any class that extended a Singleton would produce an instance of it's parent class instead of it's own one. Now you can do:
And $foo will be an instance of Foobar instead of an instance of Singleton. |
|||||||||||||||
|
|
You probably should add a private __clone() method to disallow cloning of an instance.
If you don't include this method the following gets possible
now |
|||
|
|
This code can apply for any class without caring about its class name. |
|||
|
|
|
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. |
|||
|
|
|
Unfortunately Inwdr's answer breaks when there are multiple subclasses. Here is a correct inheritable Singleton base class.
Test code:
|
|||
|
|
to use:
respose:
If you are using PHP 5.4: trait its an option, so you don't have to waste the inheritance hierarchy in order to have the Singleton pattern and also notice that whether you use traits or extends Singleton class one loose end was to create singleton of child classes if you dont add the following line of code:
in the child class the unexpected result will be:
|
||||
|
|
Supports Multiple Objects with 1 line per class:This method will enforce singletons on any class you wish, al you have to do is add 1 method to the class you wish to make a singleton and this will do it for you. This also stores objects in a "SingleTonBase" class so you can debug all your objects that you have used in your system by recusing the Create a file called SingletonBase.php and include it in root of your script! The code is
Then for any class you want to make a singleton just add this small single method.
Here is a small example:
And you can just add this singleton function in any class you have and it will only create 1 instance per class. NOTE: You should always make the __construct private to eliminate the use of new Class(); instantiations. |
||||
|
|
|
||||
|
|
|
I know this is probably going to cause an unnecessary flame war, but I can see how you might want more than one database connection, so I would concede the point that singleton might not be the best solution for that... however there are other uses of the singleton pattern that I find extremely useful. Here's an example: I decided to roll my own MVC and templating engine becuase I wanted something really lightweight. However, the data that I want to display contains a lot of special math characters such as ≥ and μ and what have you... The data is stored as the actual UTF-8 character in my database rather than pre-html-encoded, because my app can deliver other formats such as PDF and CSV in addition to HTML. The appropriate place to format for HTML is inside the template ("view" if you will) that is responsible for rendering that page section (snippet). I want to convert them to their appropriate HTML entities, but PHPs get_html_translation_table() function is not super fast. It makes better sense to retrieve the data one time and store as an array, making it available for all to use. Here's a sample I knocked together to test the speed. Presumably this would work regardless of whether the other methods you use (after getting the instance) were static or not.
Basically, I saw typical results like this: php test.php Run time: 27.842966794968 seconds using singleton Run time: 237.78191494942 seconds without using singleton So while I'm certainly no expert, I don't see a more convenient and reliable way to reduce the overhead of slow calls for some kind of data, while making it super simple (single line of code to do what you need). Granted my example only has one useful method, and therefore is no better than a globally defined function, but as soon as you have two methods, you're going to want to group them together, right? Am I way off base? Also, I prefer examples that actually DO something, since sometimes it's hard to visualize when an example includes statements like "//do something useful here" which I see all the time when searching for tutorials. Anyway, I'd love any feedback or comments on why using singleton for this type of thing is detrimental (or overly complicated). |
|||
|
|
|
Here's my example that provides ability to call as $var = new Singleton() and also creating 3 variables to test if it creates new object:
|
|||||||
|
