이를 위해 self와 함께 $anyObjectName=new static()을 사용하십시오.
예시
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