Re: [PHP] Creating an array as a property of an object

2007-01-29 Thread Richard Lynch
On Fri, January 26, 2007 3:09 pm, Ken Kixmoeller -- reply to [EMAIL PROTECTED] wrote: > I want to have an multidimensional array as a property of an object. While not relevant to your immediate question, you may want to be told that PHP arrays are not truly multi-dimensional, but nested. I.e., on

Re: [PHP] Creating an array as a property of an object

2007-01-26 Thread Ken Kixmoeller -- reply to [EMAIL PROTECTED]
On Jan 26, 2007, at 3:08 PM, Robert Cummings wrote: $this->foom_array[$line['WHAM_ID']] = $line; Cheers, Rob. Thank you so much, Rob. That did it. (Kickin' the cobwebs out of my head...) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Creating an array as a property of an object

2007-01-26 Thread Robert Cummings
On Fri, 2007-01-26 at 15:09 -0600, Ken Kixmoeller -- reply to [EMAIL PROTECTED] wrote: > Hello, folks -- lurking for a while, first post -- > > I'm relatively new to PHP but doing database design work for nearly > 20 years. > > I've RTFM'ed (+ books + other resources) a bunch of times but I hav

[PHP] Creating an array as a property of an object

2007-01-26 Thread Ken Kixmoeller -- reply to [EMAIL PROTECTED]
Hello, folks -- lurking for a while, first post -- I'm relatively new to PHP but doing database design work for nearly 20 years. I've RTFM'ed (+ books + other resources) a bunch of times but I have a mental block around doing this: I want to have an multidimensional array as a property of