发布网友 发布时间:2022-04-06 07:52
共1个回答
热心网友 时间:2022-04-06 09:21
//self指向类本身
class test {
public static $name = 123;
function a(){
echo self::$name; //调用类的属性
}
function b(){
$b = new self(); //实例化这个类
var_mp($b);
}
}
$test = new test();
$test->a();
$test->b();