" symbols The function is the same, but the objects used are different."/> " symbols The function is the same, but the objects used are different.">

Home  >  Article  >  Backend Development  >  What does double colon mean in php

What does double colon mean in php

藏色散人
藏色散人Original
2020-04-25 13:22:244121browse

What does double colon mean in php

What does the double colon mean in php?

First, when calling static properties and static methods

::and-> The function is the same, but the objects used are different! ::Refer to static methods or properties in the class, and no instantiation is required!

Create a class, and create a static property $a and a static method b, as follows:

class test {
    static public $a;
    static public function b() {}
}

If you want to call the static property $a, as follows

test::$a;

Note that a needs to be preceded by the $ symbol, which is different from the -> symbol!

If you want to call static method b, as follows

test::b();

2, when calling attributes or methods of your own class or parent class

First create a Parent class

class test {
    public function b() {}
}

Then create a subclass to inherit the parent class

class tests extends test {
    public function cs() {}
}

When we need to call the parent class’s method b

parent::b();

When we need to call our own method cs , there are two methods

$this->cs();
self::cs();

For more related tutorials, please pay attention tophp中文网!

The above is the detailed content of What does double colon mean in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn