Home > Article > Backend Development > 求帮忙看看这段代码哪里出错了
如题,使用php解析json数据,使用下面代码出错:
<code><?php header('Content-Type: text/html; charset=UTF-8'); $json_string= [{"text":"test","created":"Sun Nov 08 01:07:10 +0000 2015","favorite_count":0,"retweet_count":0,"url":"","media_url":""}]; $obj=json_decode($json_string); echo $obj->text; ?></code>
如题,使用php解析json数据,使用下面代码出错:
<code><?php header('Content-Type: text/html; charset=UTF-8'); $json_string= [{"text":"test","created":"Sun Nov 08 01:07:10 +0000 2015","favorite_count":0,"retweet_count":0,"url":"","media_url":""}]; $obj=json_decode($json_string); echo $obj->text; ?></code>
你的如果是字符串, 应该加引号.
你输出的 text
属性是在 数组里(下标为0)的那个元素里.
或者是下面这样的:
因为不清楚你最初的数据是什么样的, 所以只能猜了.