php解析json并输出到html页面
<?php$handle=fopen("http://m.weather.com.cn/data/101010100.html","rb");$content="";wh...
<?php
$handle = fopen("http://m.weather.com.cn/data/101010100.html","rb");
$content = "";
while (!feof($handle)) {
$content .= fread($handle, 10000);
}
fclose($handle);
$content = json_decode($content);
foreach ($content->weatherinfo as $key ) {
echo '<li>'.$key->city.'</li>';
}
?>
我只想得到某几项数据,所以用$key->city,可是为什么会出错呢?如果不加city就不会出错。 展开
$handle = fopen("http://m.weather.com.cn/data/101010100.html","rb");
$content = "";
while (!feof($handle)) {
$content .= fread($handle, 10000);
}
fclose($handle);
$content = json_decode($content);
foreach ($content->weatherinfo as $key ) {
echo '<li>'.$key->city.'</li>';
}
?>
我只想得到某几项数据,所以用$key->city,可是为什么会出错呢?如果不加city就不会出错。 展开
3个回答
2015-11-08 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
用json_decode()将json字符串转化成php数组,然后直接循环数组取出值即可。
<?php
$content= file_get_contents('获取json字符串的url');
$content = json_decode($content);//将json字符串转化成php数组
foreach ($content as $key ) {//循环数组
echo '<li>' . $key['city'] . '</li>';
echo '<li>' . $key['city_en'] . '</li>';
echo '<li>' . $key['date_y'] . '</li>';
echo '<li>' . $key['week'] . '</li>';
}
<?php
$content= file_get_contents('获取json字符串的url');
$content = json_decode($content);//将json字符串转化成php数组
foreach ($content as $key ) {//循环数组
echo '<li>' . $key['city'] . '</li>';
echo '<li>' . $key['city_en'] . '</li>';
echo '<li>' . $key['date_y'] . '</li>';
echo '<li>' . $key['week'] . '</li>';
}
推荐于2016-10-14
展开全部
echo '<li>'.$key->city.'</li>'; 这个时候$key已经不是对象了,所有不能用->.
可以这样:
<?php
$content= file_get_contents('http://m.weather.com.cn/data/101010100.html');
$content = json_decode($content);
foreach ($content as $key ) {
echo '<li>'.$key->city.'</li>';
echo '<li>'.$key->city_en.'</li>';
echo '<li>'.$key->date_y.'</li>';
echo '<li>'.$key->week.'</li>';
}
或者直接
<?php
$content= file_get_contents('http://m.weather.com.cn/data/101010100.html');
$content = json_decode($content);
echo '<li>'.$content->weatherinfo->city.'</li>';
echo '<li>'.$content->weatherinfo->city_en.'</li>';
echo '<li>'.$content->weatherinfo->date_y.'</li>';
echo '<li>'.$content->weatherinfo->week.'</li>';
可以这样:
<?php
$content= file_get_contents('http://m.weather.com.cn/data/101010100.html');
$content = json_decode($content);
foreach ($content as $key ) {
echo '<li>'.$key->city.'</li>';
echo '<li>'.$key->city_en.'</li>';
echo '<li>'.$key->date_y.'</li>';
echo '<li>'.$key->week.'</li>';
}
或者直接
<?php
$content= file_get_contents('http://m.weather.com.cn/data/101010100.html');
$content = json_decode($content);
echo '<li>'.$content->weatherinfo->city.'</li>';
echo '<li>'.$content->weatherinfo->city_en.'</li>';
echo '<li>'.$content->weatherinfo->date_y.'</li>';
echo '<li>'.$content->weatherinfo->week.'</li>';
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
json_encode。。。。。。。。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询