Possible Duplicate:
what is the “::” notation in php used for?
I noticed this code while modifying a friends code and noticed this piece of code: TestPages::LoadMenu();
what does :: mean in php?
A great answer would mean a lot.
Thanks!
I noticed this code while modifying a friends code and noticed this piece of code: TestPages::LoadMenu(); what does :: mean in php? A great answer would mean a lot. Thanks! |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It's the 'Scope Resolution Operator'.
http://php.net/manual/en/language.oop5.paamayim-nekudotayim.php |
|||
|
In layman terms it is used to call In your example, This means that you do not have to create an instance of a |
|||
|
|
|
It is used to access static methods of class, static variables and constants |
|||
|
|
|
It's used to access class methods / properties: http://www.php.net/manual/en/language.oop5.paamayim-nekudotayim.php |
|||||
|