如何遍历以下php数组? [英] How to loop through the following php array?

查看:48
本文介绍了如何遍历以下php数组?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想遍历以下数组.

array(2)  {
    [0]=> array(6) {
        [0]=> string(10) "excel_id "
        [1]=> string(12) "excel_name "
        [2]=> string(11) "excel_email"
        [3]=> string(13) "excel_address"
        [4]=> string(12) "excel_giveby"
        [5]=> string(16) "excel_accesories" 
    } 
    [1]=> array(6) {
        [0]=> float(111)
        [1]=> string(10) "sh1exname1"
        [2]=> string(11) "sh1exemail1"
        [3]=> string(12) "sh1exaddress"
        [4]=> string(12) "sh1exgivenby"
        [5]=> string(16) "sh1exaccesorries" 
    }    
}

有人可以帮助我吗?

推荐答案

如果您进行了任何尝试,都应该找到foreach. 这将遍历所有数组值. 您可以使用多维的foreach像这样简单地遍历多维数组:

If you tried anything at all you should have found foreach. this will loop through all of your array values. You can simply loop through a multi-dimensional array by using a multi-dimensional foreach like this:

foreach($array as $parentValue)
{
    foreach($parentValue as $childValue)
    {
        // your code
    }
}

这篇关于如何遍历以下php数组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆