时间:2021-07-01 10:21:17 帮助过:16人阅读
classA {publicstaticfunctionget_self() {returnnewself();
}
publicstaticfunctionget_static() {returnnewstatic();
}
}
classBextendsA {}
echo get_class(B::get_self()); // Aecho get_class(B::get_static()); // Becho get_class(A::get_static()); // A
通过上面可以看出new static()
表示的调用的类,而new self()
表示的是声明的类
classA {const TEST = 'testa';
publicstaticfunctiontest_static(){echostatic::TEST;
}
publicstaticfunctiontest_self()
{echoself::TEST;
}
}
classBextendsA {const TEST = 'testb';
}
echo B::test_static(); //testbecho B::test_self(); //testa
通过上面的观察可以得出一个结论,static和被调用的类相关,而self则和声明的类(self代码所在的类)相关。
以上就介绍了对PHPstatic的理解,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。