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;

 

Link to comment
Share on other sites

 

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);
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.