Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In PHP, you can initialize arrays with values quickly using the following notation:

$array = array("name" => "member 1", array("name" => "member 1.1") ) ....

is there any way to do this for STDClass objects? I don't know any shorter way than the dreary

$object = new STDClass();
$object->member1 = "hello, I'm 1";
$object->member1->member1 = "hello, I'm 1.1";
$object->member2 = "hello, I'm 2";
share|improve this question
you should change the "correct tick" from Tim to the answer of Dumbo – mrzmyr Aug 25 '12 at 15:09

5 Answers

up vote 3 down vote accepted

Here's a post showing both type casting and using a recursive function to convert single and multi-dimensional arrays to a standard object.

share|improve this answer
I asked for multi-dimensional arrays, so this is it. Thanks. – Pekka 웃 Nov 15 '09 at 21:30
For the moment, I will work with type casting only. On the long run, I will go for a mix between gnud's and this answer: A dumb_container object that can work recursively. Thanks all. – Pekka 웃 Nov 15 '09 at 21:48

You can use type casting:

$object = (object) array("name" => "member 1", array("name" => "member 1.1") );
share|improve this answer
1  
While I'd personally suggest actually making your classes do something, and using arrays as "dumb containers", this is the way to do it. – Jani Hartikainen Nov 15 '09 at 21:24
Jani, you have a point, but I just love addressing containers the -> way. :) – Pekka 웃 Nov 15 '09 at 21:28
Cheers, I didn't know it was that easy - at least for one-dimensional ones. – Pekka 웃 Nov 15 '09 at 21:29

You could try:

function initStdClass($thing) {
    if (is_array($thing)) {
      return (object) array_map(__FUNCTION__, $thing);
    }
    return $thing;
}
share|improve this answer
1  
Use __FUNCTION__ for more flexibility. – Gumbo Nov 15 '09 at 21:34
Done.                                                        


‬ ⁡⁢⁣⁠⁠⁠⁡ – outis Nov 16 '09 at 1:28

I use a class I name Dict:

class Dict {

    public function __construct($values = array()) {
        foreach($values as $k => $v) {
            $this->{$k} = $v;
        }
    }
}

It also has functions for merging with other objects and arrays, but that's kinda out of the scope of this question.

share|improve this answer

I also up-voted Gumbo as the preferred solution but what he suggested is not exactly what was asked, which may lead to some confusion. Then after giving the question a closer look I realise that it too is not valid php.

To ensure this is clear now, the two ways to produce the same stdClass in php.

As the question's long way:

$object = new stdClass;
$object->member1 = "hello, I'm 1";
$object->member1o = new stdClass;
$object->member1o->member1 = "hello, I'm 1o.1";
$object->member2 = "hello, I'm 2";

The short or single line version to produce the same, as per Gumbo's suggestion.

$object = (object)array(
     'member1' => 'hello, I\'m 1',
     'member1o' => (object)array(
         'member1' => 'hello, I\'m 1o.1',
      ),
      'member2' => 'hello, I\'m 2',
);

Will both produce the same result:

stdClass Object
(
    [member1] => hello, I'm 1
    [member1o] => stdClass Object
        (
            [member1] => hello, I'm 1o.1
        )

    [member2] => hello, I'm 2
)

nJoy!

share|improve this answer

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.