結束時,我有這段代碼:追加JSON對象URL
//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'];
但我不能將ID添加到URL,因爲某些原因結束。有任何想法嗎?
當你說「但我不能出於某種原因」你是什麼意思?索引不存在嗎?字符串是否不連接?無論如何,你可能會發現'print_r($ response)'有幫助,並確保'$ response'包含你認爲它的作用。 – Mala 2011-04-15 22:38:46
它的確如此。它正是我在評論中所說的。我想獲得該id並將其追加到url的末尾。 – 2011-04-15 22:39:50
stringify json然後URLencode它 – 2011-04-15 22:43:11