Jump to content

Parse the return values of a webservice object


seran129

Recommended Posts

I call a web service and it retuens the values in the following format

$response = $client->submitRequest($requestParams);

Which returns

stdClass Object(    [return] => stdClass Object        (            [result_code] => 0            [result_data] => City[0]=Chicago            [message_text] =>         ))

what I want is just the value for

[result_data] => City[0]=Chicago

assigned to a variable

 

 

Psedo Code

$city = [result_data] => City[0]=Chicago;

so that $city = Chicago;

 

  Quote

 

what I want is just the value for

[result_data] => City[0]=Chicago

Thats is a strange value to be returned from an api it looks to me result_data should contain an array maybe? But anyway to answer your question how to get the result_data value you'd use

$city = $response->return->result_data;

To remove city[0]= apply this

$city = str_replace('city[0]=', '', $city);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.