<?php class A { function __construct($a, $b, $c){ if(isset($this)){ $this->baz = [$a, $b, $c]; }else{ return new self($a, $b, $c); } } } var_dump(A::__construct());
You have javascript disabled. You will not be able to edit any code.