Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
5  
Please go back and accept the best answers to your questions (i.e. click the big check mark to the left of the best answers). It will give you +2 rep for each one that you mark and generally improve the information on this site. It's the right thing to do. Do it. – FishBasketGordo Aug 5 '11 at 15:01
dublicate of stackoverflow.com/questions/3737139/… – RiaD Aug 5 '11 at 17:53

marked as duplicate by netcoder, Tim Post Aug 5 '11 at 17:54

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.

5 Answers

up vote 7 down vote accepted

It's the 'Scope Resolution Operator'.

The Scope Resolution Operator (also called Paamayim Nekudotayim) or in simpler terms, the double colon, is a token that allows access to static, constant, and overridden properties or methods of a class.

http://php.net/manual/en/language.oop5.paamayim-nekudotayim.php

share|improve this answer
Paamayim Nekudotayim literally translates to "double colon", just a little added info for those curious. – Cyclone Aug 5 '11 at 14:58
1  
... in Hebrew, to add a little more for the even more curious. – Marc B Aug 5 '11 at 15:16

In layman terms it is used to call static Methods of a Class.

In your example, LoadMenu() is a static function of the TestPages class.

This means that you do not have to create an instance of a TestPages to call LoadMenu()

share|improve this answer

It means static class member access, in this case static method invocation.

share|improve this answer

It is used to access static methods of class, static variables and constants

Read more

share|improve this answer

It's used to access class methods / properties:

http://www.php.net/manual/en/language.oop5.paamayim-nekudotayim.php

share|improve this answer
1  
An important distinction to make to those that see this answer in the future, is that it is used to reference static members of a class, not an instantiated object's members. – jondavidjohn Aug 5 '11 at 17:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.