Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First of all I apologize if this is a bad question or have already asked. Well please look at following example first

$arr = array(
    "nid"=> 20,
    "title" => "Something",
    "value" => "Something else",
);
$node = (object) $arr;
$node->another='Another value';
var_dump($node);

It outputs as expected. Here is an answer on SO about it.

My question is: Is it possible to add a method/function in this way, like

$arr = array(
    "nid"=> 20,
    "title" => "Something",
    "value" => "Something else",
    "my_method" => function($arg){....}
);

or may be like this

$node = (object) $arr;
$node->my_method=function($arg){...};

and if it's possible then how can I use that function/method?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can assign functions to variables using a variety of way, for example with anonymous functions:

$node->$my_method = function () { ... };
$node->$my_method();

To have a true class method though, you'll need to define a class. Best make one that accepts an array in the constructor to hold the data:

class MyClass {

    public function __construct(array $data) {
        foreach ($array as $key => $value) {
            $this->$key = $value;
        }
    }

    public function my_method() { ... }

}

$node = new MyClass($arr);
$node->my_method();
share|improve this answer
$node->$my_method = function ($arg) { ... }; $node->$my_method('Hello!'); is it possible with argument ? – Sheikh Heera Jul 16 '12 at 11:42
Yes. ← (click) – deceze Jul 16 '12 at 11:45
Thanks a lot :-) – Sheikh Heera Jul 16 '12 at 11:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.