I have the following as a string:
stdClass Object
(
[createResult] => stdClass Object
(
[ReturnCode] => 1
)
)
How can I take the above string and create a new stdClass Object? I'd like to get the value like this:
$rc = $obj->createResults->ReturnCode;
print_routput into what it used to be? Why? You should probably be using serialization or something...