Home > Backend Development > PHP Problem > What do two colons mean in php?

What do two colons mean in php?

(*-*)浩
Release: 2023-02-24 16:42:01
Original
3390 people have browsed it

Reference methods of static methods and static properties in PHP classes

What do two colons mean in php?

Static properties of the class and direct reference to the method. In this case, you can call it directly using "::" without instantiating the class.

When calling static properties and static methods (Recommended learning: PHP programming from entry to proficiency)

::With- >The function is the same, but the objects used are different! ::Refer to static methods or properties in the class, and do not need to be instantiated!

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() {}
Copy after login

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

test::$a;
Copy after login

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

If you want to call static method b, as follows

test::b();
Copy after login

When calling attributes or methods of your own class or parent class

First create a parent class

class test {
    public function b() {}
}
Copy after login

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

parent::b();
Copy after login

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

$this->cs();

self::cs();
Copy after login

The above is the detailed content of What do two colons mean in php?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template