When should I use static methods in a class and what are the benefits?

前端 未结 10 1411
孤独总比滥情好
孤独总比滥情好 2020-11-27 12:34

I have concept of static variables but what are the benefits of static methods in a class. I have worked on some projects but I did not make a method static. Whenever I need

10条回答
  •  失恋的感觉
    2020-11-27 12:56

    Static Methods in PHP:

    Can be called without creating a class object.

    Can only call on static methods and function.

提交回复
热议问题