This is more a discussion topic than a 'help me' question.
I have just come across a strange problem. A variable (object) is being overridden when not passed anywhere.
Example;
var_dump($node->title);
$entity = $server->pull($item);
var_dump($node->title);
The two var_dumps display two different values.
$item is an unrelated string.
At this point, I dont think the contents of the 'pull()' method are relevant - I'm not curious about WHERE this is being overridden, I'm curious about HOW its being overridden.
How can PHP alter the variable unless it has been passed to the method?
There are no references in my function, node is passed direct;
function my_function($node) {
Even if I make a clone of my object
Even if I rename the var
$my_node = $node;
The cloned object is still overridden.
The renamed object is still overridden (ie, its not related to the name.)
I would love to know how this is possible. How can pull() (or associated methods) over ride a variable that they have not been given?
I need to reiterate; I don't care where the value is being changed, I care about how it is being changed when it isn't passed to the method.
