Hello,
I have a stdClass object called '$result' like this:
How can I access to operationSuccef ull or userStatus?
I tried
and it didn't work.
Thanks
Rui Gonçalves
I have a stdClass object called '$result' like this:
Code:
stdClass::__set_state(array( 'return' => stdClass::__set_state(array( 'operationSuccessful' => true, 'userStatus' => 'A', 'validUser' => true, )), ))
I tried
Code:
$result->return->operationSuccefull
Thanks
Rui Gonçalves
Comment