TweetBefore I begin to explain the use of a _clone() method, lets try and understand what does object cloning mean. To clone an object means to create a duplicate of an object. With regular variables $a = $b means that a new variable $a gets created that contains the value of $b. This means that [...]

