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!