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
Post a Comment