dongxi1943 2015-04-01 14:15
浏览 57
已采纳

使用Explode在数组中拆分值以形成多维数组

I am new to PHP so be kind. :) I have a 3 deep array. Something like this:

Array(5) { 
[0]=> array(5) { 

    [0]=> string(0) "" 
    [1]=> string(21) "0,245.19000000,864432"
    [2]=> string(21) "1,245.26000000,864432" 
    [3]=> string(21) "2,245.49000000,864432" 
    [4]=> string(21) "4,245.33000000,864432" 
}

[1]=> array(5) { 
    [0]=> string(0) "" 
    [1]=> string(21) "0,245.19000000,864453" 
    [2]=> string(21) "1,245.26000000,864453" 
    [3]=> string(21) "2,245.49000000,864453" 
    [4]=> string(21) "4,245.33000000,864453" 
 }
}...

I want to explode the inner string by commas ("2,245.49000000,864453") so the arrays becomes 4 deep like so:

Array(5) { 
  [0]=> array(5) { 

    [0]=> string(0) "" 

    [1]=> array (3)
              [0]=> "0"
              [1]=> "245.19000000"
              [2]=> "864432"

    [2]=> array (3)
              [0]=> "1"
              [1]=> "245.26000000"
              [2]=> "864432"

    [3]=> array (3)
              [0]=> "3"
              [1]=> "245.49000000"
              [2]=> "864432"

    [4]=> array (3)
              [0]=> "4"
              [1]=> "245.3000000"
              [2]=> "864432"

    [4]=> array (3)
              [0]=> "5"
              [1]=> "245.3300000"
              [2]=> "864432"
 }
}
...

So far I have:

$done = array();

for ($i = 0; $i<=count($chunks); $i++) { //loops to get size of each 2d array
$r = count($chunks[$i]);

        for ($c = 0; $c<=count($chunks[$r]); $c++) { //loops through 3d array

        $arrayparts = $chunks[$i][$c];
        $done[] = explode(",", $arrayparts); //$arrayparts is 3d array string that is exploded each time through loop

    }

}

I think this code should work but when I var_dump nothing prints? Can someone help me learn?

Thanks!

Suggested: $chunks is 3d array

foreach($chunks as $innerArray) {
        $result[] = array_map(function($v){
            return explode(",", $v);
        }, $innerArray);
    }

展开全部

  • 写回答

2条回答 默认 最新

  • douhuang3833 2015-04-01 14:24
    关注

    Don't make it complicated, just use this:

    (Here I go through each innerArray with a foreach loop and then I go through all values with array_map() and explode it and return it to the results array)

    <?php
    
        foreach($arr as $innerArray) {
            $result[] = array_map(function($v){
                return explode(",", $v);
            }, $innerArray);
        }
    
        print_r($result);
    
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部