Re: [PHP] Re: Passing large object between methods

2010-06-09 Thread Jim Lucas
mrfroasty wrote: > > //NOTHING!!!// > Well Mr. Froasty, was there a point to your email or do you always send empty emails with random files attached to them to list the list? Was their suppose to be a question along with that email? You simply forgot to add it? -- Jim Lucas A: Maybe because

[PHP] Re: Passing large object between methods

2010-06-09 Thread mrfroasty
data = "B foo"; //call a function to add extra info on $obj_A $obj = $this->addExtraInfo($obj); //debug print_r($obj); echo ""; } public function addExtraInfo($obj) { $obj->recs = "B bar"; return $obj; } } class B { pu