When should I use Static functions/classes/fields in PHP? What are some practical uses of it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
you should not, it's rarely useful. common usage for statics are factory methods and singleton::instance() factory:
singleton:
|
|||||||||
|
|
Usage of static methods in same in languages like Java/PHP. One simple example can be that you want to use a variable across all instances of your class and any instance can change its value and you want it to get reflected in other instance as well.
Without static you can't set count value via one object and access it in others. |
|||
|
|