php类中双冒号的作用

一般是
类名 :: 静态属性/方法名

例如:

调用静态方法
class A{

public static function abc(){
echo “HELLO WORLD”;
}

}

A::abc();