Re: [PHP] Goofy interactions between $this and vars in classs. 4.1.0

2001-12-17 Thread Maxim Derkachev
Hello Mark, Monday, December 17, 2001, 11:05:15 AM, you wrote: M> However, if I Change the Zabba function to: M> function Zabba() M> { M> $localVariable = $this; M> $localVariable->addValue("asdfasdfasdf"); M> } M> Then I will get

[PHP] Goofy interactions between $this and vars in classs. 4.1.0

2001-12-16 Thread Mark
Hi! I'm having some goofy interactions between $this pointers in classes and variables. Case in Point: if I have the following code: children[] = $in_value; } function Y() { } function Zabba() { $this->addValue("asdfasdfasdf"); }