Jump to content

how to add a method to an existing object?


simplemedia

Recommended Posts

Hi all, great board you got here.

 

I have a question that I think is pretty simple, but I haven't figured it out yet.

 

I have an object that has already been instantiated, lets call it $thing. I'd like to add a new method to $thing, how do I do that?

 

One course of action would be to extend the original class. But $thing is already instantiated, plus I don't know what the original class is (and would like to avoid going that direction if possible.)

 

I tried this, which is similar to Javascript syntax, but it didn't work:

 

$thing->new_method = function() {

 

    new function goes in here

   

}

 

Any help is much appreciated, thanks!!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.