Heim  >  Artikel  >  Backend-Entwicklung  >  php 数组递归求和的例子

php 数组递归求和的例子

WBOY
WBOYOriginal
2016-07-25 09:04:471287Durchsuche
  1. /**

  2. desc:数组递归求和
  3. link:bbs.it-home.org
  4. date:2013/2/22
  5. */
  6. function arraySumRecursive($array)
  7. {
  8. $total = 0;
  9. foreach(new recursiveIteratorIterator( new recursiveArrayIterator($array)) as $num)
  10. {
  11. $total += $num;
  12. }
  13. return $total;
  14. }
  15. /*** a flat array ***/

  16. $array = array(10, 20, 5, 34, 129);
  17. /*** add the values ***/

  18. echo arraySumRecursive($array)."
    ";
  19. /*** a multi dimensional array ***/

  20. $array = array(10, 20, 5,
  21. array(5, 2, 3,
  22. array(5, 3,
  23. array(2, 10,
  24. array(19, 1)
  25. ),3
  26. ), 2, 7
  27. ), 3
  28. );
  29. /*** add the values ***/

  30. echo arraySumRecursive($array);
  31. ?>
复制代码

以上脚本的输出结果如下: array.jpg 猜你喜欢: 有关php数组及循环的小例子



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn