如何从文本文件中的对象数组中获取特定字段
How to get a Particular field from an object array in a text file
我正在尝试使用 file_get _contents 从文本文件中仅获取 refresh_token 字段。请任何人解决这个问题。
{"access_token":"XXXX","token_type":"bearer","expires_in":3600,"refresh_token":"XXXX"}
那是一个 json 字符串
$content = file_get_contents([...]);
$arr = json_decode($content);
echo $arr->access_token;
对于 json 操作,您应该使用 json_decode
$str= file_get_contents(some.txt);
$array = json_decode($content);
echo $array->access_token;
我正在尝试使用 file_get _contents 从文本文件中仅获取 refresh_token 字段。请任何人解决这个问题。
{"access_token":"XXXX","token_type":"bearer","expires_in":3600,"refresh_token":"XXXX"}
那是一个 json 字符串
$content = file_get_contents([...]);
$arr = json_decode($content);
echo $arr->access_token;
对于 json 操作,您应该使用 json_decode
$str= file_get_contents(some.txt);
$array = json_decode($content);
echo $array->access_token;