Steven Wittens from Acko.net describes a way of implementing a clone function in PHP4 to emulate PHP5's clone behaviour.
The idea is to write object-oriented programs that will behave the same way in both PHP4 and PHP5. Obviously, the drawback of doing so is that you c...