<?php class anotherclass { var $id; } /* Start an instance */ $a = new anotherclass(); $a->id = 10; /* Clone the active instance, making a copy of the entire object */ $b = $a->__clone(); $b->id = 20;?>