简体   繁体   中英

Appending JSON object to the end of URL

I have this bit of code:

//execute post (the result will be something like {"result":1,"error":"","id":"4da77536a2338","lockcode":"4af15b3725eb5cf3641d96f6c7a3b71d"})
       $result = curl_exec($ch);
       $response = json_decode($result);

       //close connection   
       curl_close($ch);

       $imageHref = 'http://my.site.com/render?id=' . $response['id'];

But I can't append the id to the end of the URL for some reason. Any ideas?

It's becase json decode does not give you back an array, but instead an object. Instead:

$imageHref = 'http://my.site.com/render?id=' . $response->id;

The reason your code is failing is because you're trying to use an object as though it were an array. Replace your last line with:

$imageHref = 'http://my.site.com/render?id=' . $response->id;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM