<?php class Foo { public object $this; public function __construct() { $this->this = $this; } } $f = new Foo(); var_dump($f); $f->this = new stdClass(); var_dump($f);
You have javascript disabled. You will not be able to edit any code.