<?php class A { static function call() { self::method(); $self = self::class; $self::method(); } static function method() { echo static::class; } } class B extends A {} B::call();
You have javascript disabled. You will not be able to edit any code.