php中输出json对象的值(实现⽅法)实例如下所⽰:
<!DOCTYPE html>
<html>
<body>
<?php
phpjson格式化输出$json = '{"report":{"date":"2012-04-10","content":"abcdefght"}}';
$arr = (array) json_decode($json,true);
echo '当前⽇期是:'. $arr['report']['date'];
echo "<br/>";
echo '<pre>';
print_r($arr);
echo '</pre>';
foreach($arr as $arrvalue)
{
foreach($arrvalue as $key=>$value)
{
echo "[$key] = $value <br />";
}
}
echo "<br/>";
>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<?php
$file_exists = file_exists("");
if( $file_exists ){
$myfile = fopen("", "r") or die("");
$content = fread($myfile,filesize(""));
fclose($myfile);
echo $content;
echo "<br/>";
$arr=(array)json_decode($content,true);
echo $arr['CSS'];
echo "<br/>";
echo $arr['AJAX'];
}
>
</body>
</html>
<:
{
"AJAX": "Asynchronous JavaScript and XML",
"CSS": "Cascading Style Sheets"
}
以上这篇php中输出json对象的值(实现⽅法)就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论