[关闭]
@Chiang 2020-01-08T11:13:26.000000Z 字数 317 阅读 589

get_called_class

PHP


get_called_class — 后期静态绑定("Late Static Binding")类的名称

说明

  1. get_called_class ( void ) : string

获取静态方法调用的类名。

返回值

返回类的名称,如果不是在类中调用则返回 FALSE。

范例

  1. <?php
  2. class foo {
  3. static public function test() {
  4. var_dump(get_called_class());
  5. }
  6. }
  7. class bar extends foo {
  8. }
  9. foo::test();
  10. bar::test();
  11. 以上例程会输出:
  12. string(3) "foo"
  13. string(3) "bar"
  14. ?>
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注