0
我想選擇一個數組變量(至少我認爲它是存儲爲一個數組):如何從JSON數組中選擇值
$data = json_encode($response);
file_put_contents('file.txt', $data);
給
"status":200,"response":{
"api_id":"0f42d6be-8ed2-11e3-822e-22135",
"bill_duration":36,
"call_duration":36,
"total_rate":"0.00300"}
}
哪有我選擇call_duration
值(在PHP中)?我試過$response['call_duration']
,我認爲應該工作,但什麼都不返回?
這是一個JSON對象。 – jeremyjjbrown
我不知道php,但如果響應中有JSON,我可以做一些類似var object = JSON.parse(response)的東西,並訪問你的屬性object.call_duration – KrishnaDhungana
你們看起來太過分了。他已經有一個名爲$ response的php數組。然後將其轉換爲json並將其放入一個文件中進行檢查。這個問題問如何獲得call_duraton的價值,這是微不足道的:$ response ['response'] ['call_duration'] –