php - What is the name of the :: operator? -


i new php, , practicing online tutorials. encounter sign :: while going through books, online tutorial or blogs. if check php demo applications see operator. tried put sign in google, got unexpected results. tried search in other forums well, didn't got right answer. call bubble colon, technical name?

:: scope resolution operator (you may find references paamayim nekudotayim, hebrew "double colon"). used call static functions of class, in

class myclass {   public static function hi() {     echo "hello, world";   } } myclass::hi(); 

for more details on classes , objects, refer official documentation.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -