<?php class B { public string $hello = "world"; } class Test { public static $TEST = "B"; public string $test = "B"; public function test() { return "B"; } } $class = new Test(); $test = new Test::$TEST; echo $test->hello; $test = new $class::$TEST; echo $test->hello; $test = new $class->test; echo $test->hello; $test = new $class->test(); echo $test->hello;
You have javascript disabled. You will not be able to edit any code.