Can someone explain me
what is Object Cloning in php?
When should i use clone keyword in php?
Object Cloning, in terms of PHP 5, is what is known as a "shallow copy". It then calls the __clone() method on the object being cloned.