I understand that there are two ways to access a PHP class - "::" and "->". Sometime one seems to work for me, while the other doesn't, and I don't understand why.
What are the benefits of each, and what is the right situation to use either?
|
|
|||||||
|
|
|
Simply put, If the property belongs to the class, use If the property belongs to an instance of the class, use
|
||||||||||||||||
|
|
|
The "::" symbol is for accessing methods / properties of an object that have been declared with the static keyword, "->" is for accessing the methods / properties of an object that represent instance methods / properties. |
||||
|
|
|
When you declare a class, it is by default 'static'. You can access any method in that class using the
Now, when you create an instance of this class by using the
|
|||
|
|
It should also be noted that every static function can also be called using an instance of the class but not the other way around. So this works:
And this doesn't:
Of course you should restrict yourself to calling static methods in a static way, because instantiating an instance not only costs memory but also doesn't make much sense. This explanation was mainly to illustrate why it worked for you some of the times. |
||||||||||||||||
|
|
|
Sourcing WikiPedia - Class
The The If the function operates on an instance, you'll be using Another use of |
||
|
|
|
|
Php can be confusing in this regard you should read this. What's also confusing is that you can call non static functions with the :: symbol. This is very strange when you come from Java. And it certainly surprised me when I first saw it. For example:
As you can see static is very loose in php. And you can call any function with both the -> and the :: symbols. But there is a difference when you call with :: there is no $this reference to an instance. See example #1 in the manual. |
||
|
|