Re: [PHP] Re: Copying an Object

2010-09-25 Thread Daniel Kolbo
On 9/24/2010 9:49 AM, chris h wrote: > "Gang of Four" > > http://www.amazon.com/Design-Patterns-Elements-Reusable-Object-Oriented/dp/0201633612 > > An excellent book on OOP. > > Chris H. > > > On Fri, Sep 24, 2010 at 9:34 AM, Bob McConnell wrote: > >> From: chris h >> >>> On Fri, Sep 24, 201

Re: [PHP] Re: Copying an Object

2010-09-24 Thread Peter Lind
On 25 September 2010 00:11, Daniel Kolbo wrote: > On 9/24/2010 8:35 AM, Peter Lind wrote: >> On 24 September 2010 14:22, Bob McConnell wrote: >>> From: David Hutto >>> On Fri, Sep 24, 2010 at 4:09 AM, Gary wrote: > Daniel Kolbo wrote: > >> Say you have two classes: human and mal

Re: [PHP] Re: Copying an Object

2010-09-24 Thread Daniel Kolbo
On 9/24/2010 6:11 PM, Daniel Kolbo wrote: > On 9/24/2010 8:35 AM, Peter Lind wrote: >> On 24 September 2010 14:22, Bob McConnell wrote: >>> From: David Hutto >>> On Fri, Sep 24, 2010 at 4:09 AM, Gary wrote: > Daniel Kolbo wrote: > >> Say you have two classes: human and male. Fur

Re: [PHP] Re: Copying an Object

2010-09-24 Thread Daniel Kolbo
> > On 9/24/2010 4:09 AM, Gary wrote: >> Daniel Kolbo wrote: >> >>> Say you have two classes: human and male. Further, say male extends >>> human. Let's say you have a human object. Then later you want to make >>> that human object a male object. This seems to be a pretty reasonable >>> thing

Re: [PHP] Re: Copying an Object

2010-09-24 Thread chris h
"Gang of Four" http://www.amazon.com/Design-Patterns-Elements-Reusable-Object-Oriented/dp/0201633612 An excellent book on OOP. Chris H. On Fri, Sep 24, 2010 at 9:34 AM, Bob McConnell wrote: > From: chris h > > > On Fri, Sep 24, 2010 at 8:35 AM, Peter Lind > wrote: > > > > On 24 Septem

RE: [PHP] Re: Copying an Object

2010-09-24 Thread Bob McConnell
From: chris h > On Fri, Sep 24, 2010 at 8:35 AM, Peter Lind wrote: > > On 24 September 2010 14:22, Bob McConnell wrote: > > From: David Hutto > > > >> On Fri, Sep 24, 2010 at 4:09 AM, Gary wrote: > >>> Daniel Kolbo wrote: > >>> > Say you have two

Re: [PHP] Re: Copying an Object

2010-09-24 Thread chris h
On Fri, Sep 24, 2010 at 8:35 AM, Peter Lind wrote: > On 24 September 2010 14:22, Bob McConnell wrote: > > From: David Hutto > > > >> On Fri, Sep 24, 2010 at 4:09 AM, Gary > wrote: > >>> Daniel Kolbo wrote: > >>> > Say you have two classes: human and male. Further, say male extends >

RE: [PHP] Re: Copying an Object

2010-09-24 Thread Bob McConnell
From: Peter Lind > On 24 September 2010 14:22, Bob McConnell wrote: >> From: David Hutto >> >>> On Fri, Sep 24, 2010 at 4:09 AM, Gary wrote: Daniel Kolbo wrote: > Say you have two classes: human and male.  Further, say male extends > human.  Let's say you have a human object.  

Re: [PHP] Re: Copying an Object

2010-09-24 Thread Peter Lind
On 24 September 2010 14:22, Bob McConnell wrote: > From: David Hutto > >> On Fri, Sep 24, 2010 at 4:09 AM, Gary wrote: >>> Daniel Kolbo wrote: >>> Say you have two classes: human and male.  Further, say male extends human.  Let's say you have a human object.  Then later you want to make

RE: [PHP] Re: Copying an Object

2010-09-24 Thread Bob McConnell
From: David Hutto > On Fri, Sep 24, 2010 at 4:09 AM, Gary wrote: >> Daniel Kolbo wrote: >> >>> Say you have two classes: human and male.  Further, say male extends >>> human.  Let's say you have a human object.  Then later you want to make >>> that human object a male object.  This seems to be a

Re: [PHP] Re: Copying an Object

2010-09-24 Thread David Hutto
On Fri, Sep 24, 2010 at 4:09 AM, Gary wrote: > Daniel Kolbo wrote: > >> Say you have two classes: human and male.  Further, say male extends >> human.  Let's say you have a human object.  Then later you want to make >> that human object a male object.  This seems to be a pretty reasonable >> thing