Re: [Phphtmllib-devel] Strange Class behaviour...
Status: Beta
Brought to you by:
hemna
From: walt b. <wab...@3g...> - 2003-07-09 17:10:32
|
Mark Lawrence wrote: >On Mon, 7 Jul 2003, walt boring wrote: > > > >>---yah its still alive, I've just been super busy lately. I need to get >>2.2.5 out the door. >> >> > >Glad to hear it. Having delved further into this I really think the >library is a very valuable tool. > ---thanks I think so too! > > > >>$this->$content =& new DIVtag; has the potential to do bad things >> >> > >Woops. Can I claim beginner error? Thanks for the fix. > ---hehe I'm just glad thats all it was. no big. > >On a different note, is there already, or are there plans in the pipeline >for a reference version of TABLETag->add_row()? > ---the problem with that is that php can't do references for n argument functions The only way that add_row() works, is with calling get_func_args(), which returns an array of arguments passed into the function. That array is a copy :( PHP5 might fix it, but I'm not sure yet. Walt |