<?php class A { public function __construct() { } public static function init() { $instance = new static(); $instance->doStuff(); } protected function doStuff() { echo get_class($this); } } class B extends A { } B::init();
You have javascript disabled. You will not be able to edit any code.