--TEST-- Bug #68262: Broken reference across cloned objects --FILE-- p = 'init'; $clone = clone $first; $ref =& $first->p; unset($ref); $clone = clone $first; $clone->p = 'foo'; var_dump($first->p); ?> --EXPECT-- string(4) "init"