3v4l.org

run code in 500+ PHP versions simultaneously
<?php class A { public static function withSelf(): self { return new self(); } public static function withStatic(): static { return new static(); } } class B extends A {} var_dump(A::withSelf()); // output: A var_dump(B::withSelf()); // output: A var_dump(B::withStatic()); // output: B
Output for 8.2.31 - 8.2.33, 8.3.0 - 8.3.33, 8.4.1 - 8.4.24, 8.5.0 - 8.5.9
object(A)#1 (0) { } object(A)#1 (0) { } object(B)#1 (0) { }

preferences:
55.84 ms | 774 KiB | 4 Q