I have an object in PHP, of the type MyObject.
$myObject instanceof MyObject
Now, in the class MyObject, there is a non-static function, and in there, I use the reference to "me", like $this, but I also have another object there.
Is it possible, without doing $this = $myObject, to achieve more or less the same effect, like something of the sort set_object_vars($this, get_object_vars($myObject))?
$this", are you aliasing$thisin the method? – Bracketworks Jan 3 at 13:13$this' - especially. Maybe this is what your looking for, maybe it is not: PHP Clone class – George Reith Jan 3 at 13:22