php 遍历数组求解释..
$json=json_decode($str);foreach($jsonas$object){$id=explode(',',$object->{id});echo$o...
$json = json_decode($str);
foreach($json as $object){
$id = explode(',',$object->{id});
echo $object->name."这里是名字";
if($id[0])
echo "有ID";
else
echo "没ID";
}
求$str的内容,$str是什么的情况下上面的程序才能执行? 展开
foreach($json as $object){
$id = explode(',',$object->{id});
echo $object->name."这里是名字";
if($id[0])
echo "有ID";
else
echo "没ID";
}
求$str的内容,$str是什么的情况下上面的程序才能执行? 展开
展开全部
函数定义
mixed json_decode ( string $json [, bool $assoc ] )
接受一个JSON 格式的字符串并且把它转换为 PHP 变量
参数
json
待解码的 json string 格式的字符串。
assoc
当该参数为 TRUE 时,将返回array而非 object 。
实例说明
用json_decode()函数将JSON 格式的字符串编码。
<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
var_dump(json_decode($json));
var_dump(json_decode($json, true));
?>
以上例程会输出:
object(stdClass)#1 (5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}
array(5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}
mixed json_decode ( string $json [, bool $assoc ] )
接受一个JSON 格式的字符串并且把它转换为 PHP 变量
参数
json
待解码的 json string 格式的字符串。
assoc
当该参数为 TRUE 时,将返回array而非 object 。
实例说明
用json_decode()函数将JSON 格式的字符串编码。
<?php
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
var_dump(json_decode($json));
var_dump(json_decode($json, true));
?>
以上例程会输出:
object(stdClass)#1 (5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}
array(5) {
["a"] => int(1)
["b"] => int(2)
["c"] => int(3)
["d"] => int(4)
["e"] => int(5)
}
参考资料: http://baike.baidu.com/view/4027653.htm
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询