[PHP] Re: __get() not reentrant?

2005-05-22 Thread Christopher J. Bottaro
Jochem Maas wrote: Christopher J. Bottaro wrote: Maybe I'm using reentrant incorrectly, but here is what I mean... class Test { function __get($nm) { if ($nm == 'x') return $this-func(); elseif ($nm == 'y') return 'y'; elseif ($nm == 'xx')

Re: [PHP] Re: __get() not reentrant?

2005-05-22 Thread Marek Kilimajer
Christopher J. Bottaro wrote: Jochem Maas wrote: Christopher J. Bottaro wrote: Maybe I'm using reentrant incorrectly, but here is what I mean... class Test { function __get($nm) { if ($nm == 'x') return $this-func(); elseif ($nm == 'y') return 'y'; elseif