简体   繁体   中英

Count element in multidimensional array

I have one problem with PHP array. I have the following array:

$arr = array(
  1 => array(1, 2),
  2 => array(1,2,3),
  3 => array(4,array(4,4,4))
);

I want to know how many element in total. Ex:

echo count($arr); // result: 3

but I want: 7

I want to do this without loop.

Do any one know, please help?

Take one of this

$arr = array(
    1 => array(1, 2),
    2 => array(1, 2, 3),
    3 => array(4, array(4, 4, 4))
);

// iterate over values to find out their size/
var_dump(array_reduce($arr, function($count, $inner_array)
        { return $count + sizeof($inner_array); }, 0));

// merge all value to one big array
var_dump(count(call_user_func_array('array_merge', $arr)));

// create new array with counts of items    
var_dump(array_sum(array_map('sizeof', $arr)));
<?php

$arr = array(
  1 => array(1, 2),
  2 => array(1,2,3),
  3 => array(4,array(4,4,4))
);

$sum = 0;

foreach($arr as $a => $b) {
    $sum += count($b);
}   

echo $sum;

?>
$arr = array(
  1 => array(1, 2),
  2 => array(1,2,3),
  3 => array(4,array(4,4,4))
);

$count = 0;
foreach ($arr as $level) {
    $count+= count($level);
}
echo $count;

If your array as follows you can use another method for get 7

$arr = array(
      1 => array(1, 2),
      2 => array(1,2,3),
      3 => array(4,8)
    );
echo (count($arr, COUNT_RECURSIVE) - count($arr));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM