时间:2021-05-26
1.数组arr
var_dump(arr) 值如下:
array (size=3) 'delete' => array (size=3) 0 => string 'HBSFlyRecode20170222-101501.txt' (length=31) 1 => string 'HBSFlyRecode20170222-105502.txt' (length=31) 2 => string 'HBSFlyRecode20170222-108803.txt' (length=31) 'new' => array (size=3) 0 => string 'HBSFlyRecode20170223-101504.txt' (length=31) 1 => string 'HBSFlyRecode20170223-105505.txt' (length=31) 2 => string 'HBSFlyRecode20170223-108806.txt' (length=31) 'old' => array (size=3) 0 => string 'HBSFlyRecode20170221-101507.txt' (length=31) 1 => string 'HBSFlyRecode20170221-105508.txt' (length=31) 2 => string 'HBSFlyRecode20170221-108809.txt' (length=31)echo $arr['old'][0];打印出: HBSFlyRecode20170221-101507.txt但是如果arr是对象形式 , 打印结果如下:
var_dump(arr)object(stdClass)[1] public 'delete' => array (size=3) 0 => string 'HBSFlyRecode20170222-101501.txt' (length=31) 1 => string 'HBSFlyRecode20170222-105502.txt' (length=31) 2 => string 'HBSFlyRecode20170222-108803.txt' (length=31) public 'new' => array (size=3) 0 => string 'HBSFlyRecode20170223-101504.txt' (length=31) 1 => string 'HBSFlyRecode20170223-105505.txt' (length=31) 2 => string 'HBSFlyRecode20170223-108806.txt' (length=31) public 'old' => array (size=3) 0 => string 'HBSFlyRecode20170221-101507.txt' (length=31) 1 => string 'HBSFlyRecode20170221-105508.txt' (length=31) 2 => string 'HBSFlyRecode20170221-108809.txt' (length=31)就不能使用 $arr[‘old'][0] 取值了 , 可以使用arr对象和数组通用的foreach方式取值:
function getValue($arr){ foreach($arr as $key => $value){ if(is_array($value)){ getValue($value); }else{ echo $value."<br>"; } }}如果arr为对象形式 , 可以考录将对象转为数组形式 , 这里提供一种快捷方式:
1. $object_json = json_encode($arr);得到的是对象
$json = json_encode($arr,true);得到的是纯json
2. json_decode($object_json) 和 json_decode($json)得到的是数组对象
json_decode($object_json,true) 和 json_decode($json,true)得到的是数组
综上 , 可以将数组对象转为数组的方式:
arr=jsondecode(jsonencode(arr=jsondecode(jsonencode(arr,true),true);项目中发现此问题 , 建议大家在php中将json和array转换时 , json_encode() 和 json_decode()的第二个参数要加 true , 即:
json_encode(arr,true);jsondecode(arr,true);jsondecode(json,true);以上这篇php取出数组单个值的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
数组是一个能在单个变量中存储多个值的特殊变量。如果您有一个项目清单,将其存储到单个变量中。在这里为大家收集整理了关于php数组指针,以方便大家参考。 数组
本文实例讲述了PHP获取数组中单列值的方法。分享给大家供大家参考,具体如下:PHP中获取数组中单列的值如下:利用PHP中的数组函数array_column():
下面JS中获取数组中最大的值的方法: //取出数组中最大的值 vararrs=[11,152,21,5,31,23,90,102]; /*1、定义一个
php开发过程中,可能经常需要对取出的数组要获取数组的最后健或值。在这里总结了三个方法,并且跟据他们三个方法在一些情况下如何使用的条件限制进行了说明。 总
本文实例讲述了php计算多维数组中所有值总和的方法。分享给大家供大家参考。具体实现方法如下:php内置函数array_sum()函数返回数组中所有值的总和,只能