How would one create a Singleton class using PHP5 classes?
|
|
|
|
|
|
|
To use:
$fact == $fact2; But:
Throws an error :) |
|||
|
|
|
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 |
||
|
|
|
|
Go here for some more patterns: |
||
|
|
|
|
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. |
||
|
|
