我有来自api响应的以下响应内容:
{"token_type":"Bearer","expires_in":31535919,"access_token":"eyJ0eXa99e760ef4e468d17198f9fa6be9d67c36240a9bf9bb74d76b18e18ca2661706e33d1bc80cdAiOiJKV1QiLCJhbGciOiJSU.......
如何获取access_token
值?这样我就可以使用。
答案 0 :(得分:0)
您可以使用json_decode
函数将其转换为对象并在那里进行访问。
$response = '{"token_type":"Bearer","expires_in":31535919,"access_token":"eyJ0eXa99e760ef4e468d17198f9fa6be9d67c36240a9bf9bb74d76b18e18ca2661706e33d1bc80cdAiOiJKV1QiLCJhbGciOiJSU.......';
$response = json_decode($response, true);
echo $response['access_token'];
希望这会有所帮助。