如何打印从 get_file_contents php 函数打印的 json 数据
how to prnt json data printed from get_file_contents php function
我从 get_file_contents 输出打印了这个 json。
{"status":"INVALID_CREDENTIALS"}
现在我想回显"status"的内容,我用了
echo $status
但没有用。请帮忙。
首先,使用json_decode转换为php对象:
$json = '{"status":"INVALID_CREDENTIALS"}';
$obj = json_decode($json);
然后:
echo $obj->status;
我从 get_file_contents 输出打印了这个 json。
{"status":"INVALID_CREDENTIALS"}
现在我想回显"status"的内容,我用了
echo $status
但没有用。请帮忙。
首先,使用json_decode转换为php对象:
$json = '{"status":"INVALID_CREDENTIALS"}';
$obj = json_decode($json);
然后:
echo $obj->status;