php json_decode 疯了。。。
<?php$content=file_get_contents('cu.json');echo$content;echo"<br/>";$arr=json_decode(...
<?php
$content = file_get_contents('cu.json');
echo $content;
echo "<br/>";
$arr = json_decode(file_get_contents($content), true);
var_dump($arr);
?>
可以读到数据,但是进行json_decode为啥得到的是null呢 展开
$content = file_get_contents('cu.json');
echo $content;
echo "<br/>";
$arr = json_decode(file_get_contents($content), true);
var_dump($arr);
?>
可以读到数据,但是进行json_decode为啥得到的是null呢 展开
2个回答
2014-12-12
展开全部
楼主自己写错
$arr = json_decode(file_get_contents($content), true);
$content是个json字符串了,不是文件名
$arr = json_decode($content, true); 或者$arr = json_decode(file_get_contents('cu.json'), true);
$arr = json_decode(file_get_contents($content), true);
$content是个json字符串了,不是文件名
$arr = json_decode($content, true); 或者$arr = json_decode(file_get_contents('cu.json'), true);
更多追问追答
追问
你好,我已经改过来了,可结果还是NULL
追答
";
$arr = json_decode($content);
var_dump($arr);
?>
我的测试数据没有问题,能把你的cu.json的数据搞上来不
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询