PHP 中抽象静态方法中的实例子类?


为此,请将 $anyObjectName=new static() 与 self 一起使用。

例子

PHP 代码如下

 现场演示

<!DOCTYPE html>
<html>
<body>
<?php
abstract class Base{
   protected static $fullName = '';
   abstract protected function customFunction();
   public static function get_obj($param1 = null, $param2 = null){
      $obj = new static();
      $obj->customFunction();
   }
   public static function getFullName(){
      return static::$fullName;
   }
}
class Child extends Base {
   protected static $fullName = 'John Doe';
   protected function customFunction(){
      echo self::getFullName() . "<br>";
      echo  $this;
   }
}
Child::get_obj();
?>
</body>
</html>

输出

这将产生以下输出

John Doe

更新时间:13-10-2020

464 次浏览

开启你的 职业生涯

修完该课程,即可获得认证

开始吧
广告