1
我正在使用Guzzle來獲取HTTP響應。如果我這樣做:從Guzzle響應中訪問特定屬性?
$response = $res->getBody();
我得到一個具有'email'作爲屬性之一的對象。但是,如果我這樣做要麼:
$email = $res->getBody()->email;
或
$email = $response->email
我收到了 '電子郵件沒有價值' 的錯誤。我在想什麼?我如何訪問響應對象中的特定屬性?
輝煌 - json_decode正是我需要的。謝謝 – daninthemix