">" />" />
Question:What is object cloning?
Answer To remedy the problems with copying ,PHP offers an explicit means for cloning an object.We clone an object by prefacing it with the clone keyword, like so:
destinationObject = clone targetObject;
+ Report
What is object cloning?