<?php $obj = new stdClass; $obj->expr = new stdClass; $a = $obj; while ($a->expr instanceof stdClass) { $a->expr->expr = 'test'; $a = $a->expr; } var_dump($obj); var_dump($obj === $a);
You have javascript disabled. You will not be able to edit any code.