fork download
  1. <?php
  2.  
  3. // your code goes here
  4. class A {
  5. public function test() {
  6. $a = new $this();
  7. var_dump($a);
  8. }
  9. }
  10.  
  11. (new A())->test();
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
object(A)#2 (0) {
}