count_recursive.phpt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. --TEST--
  2. Test count() function
  3. --FILE--
  4. <?php
  5. echo "*** Testing basic functionality of count() function ***\n";
  6. print "-- Testing arrays --\n";
  7. $arr = array(1, array(3, 4, array(6, array(8))));
  8. print "COUNT_NORMAL: should be 2, is ".count($arr, COUNT_NORMAL)."\n";
  9. print "COUNT_RECURSIVE: should be 8, is ".count($arr, COUNT_RECURSIVE)."\n";
  10. print "-- Testing hashes --\n";
  11. $arr = array("a" => 1, "b" => 2, array("c" => 3, array("d" => 5)));
  12. print "COUNT_NORMAL: should be 3, is ".count($arr, COUNT_NORMAL)."\n";
  13. print "COUNT_RECURSIVE: should be 6, is ".count($arr, COUNT_RECURSIVE)."\n";
  14. print "-- Testing various types with no second argument --\n";
  15. print "COUNT_NORMAL: should be 2, is ".count(array("a", array("b")))."\n";
  16. $arr = array('a'=>array(NULL, NULL, NULL), 1=>array(NULL=>1, 1=>NULL),
  17. array(array(array(array(array(NULL))))));
  18. print "-- Testing really cool arrays --\n";
  19. print "COUNT_NORMAL: should be 3, is ".count($arr, COUNT_NORMAL)."\n";
  20. print "COUNT_RECURSIVE: should be 13, is ".count($arr, COUNT_RECURSIVE)."\n";
  21. echo "\n*** Testing possible variations of count() function on arrays ***";
  22. $count_array = array(
  23. array(),
  24. array( 1 => "string"),
  25. array( "" => "string", 0 => "a", NULL => "b", -1 => "c",
  26. array(array(array(NULL)))),
  27. array( -2 => 12, array(array(1, 2, array(array("0"))))),
  28. array( "a" => 1, "b" => -2.344, "b" => "string", "c" => NULL, "d" => -2.344),
  29. array( 4 => 1, 3 => -2.344, "3" => "string", "2" => NULL,
  30. 1 => -2.344, array()),
  31. array( TRUE => TRUE, FALSE => FALSE, "" => "", " " => " ",
  32. NULL => NULL, "\x000" => "\x000", "\000" => "\000"),
  33. array( NULL, 1 => "Hi", "string" => "hello",
  34. array("" => "World", "-2.34" => "a", "0" => "b"))
  35. );
  36. $i = 0;
  37. foreach ($count_array as $count_value) {
  38. echo "\n-- Iteration $i --\n";
  39. print "COUNT_NORMAL is ".count($count_value, COUNT_NORMAL)."\n";
  40. print "COUNT_RECURSIVE is ".count($count_value, COUNT_RECURSIVE)."\n";
  41. $i++;
  42. }
  43. print "\n-- Testing count() on an empty sub-array --\n";
  44. $arr = array(1, array(3, 4, array()));
  45. print "COUNT_NORMAL: should be 2, is ".count($arr, COUNT_NORMAL)."\n";
  46. print "COUNT_RECURSIVE: should be 5, is ".count($arr, COUNT_RECURSIVE)."\n";
  47. echo "\n-- Testing count() on objects with Countable interface --\n";
  48. class count_class implements Countable {
  49. private $var_private;
  50. public $var_public;
  51. protected $var_protected;
  52. public function count(): int {
  53. return 3;
  54. }
  55. }
  56. $obj = new count_class();
  57. print "COUNT_NORMAL: should be 3, is ".count($obj)."\n";
  58. echo "\n-- Testing count() on resource type --\n";
  59. $resource1 = fopen( __FILE__, "r" ); // Creating file(stream type) resource
  60. $resource2 = opendir( "." ); // Creating dir resource
  61. /* creating an array with resources as elements */
  62. $arr_resource = array("a" => $resource1, "b" => $resource2);
  63. var_dump(count($arr_resource));
  64. echo "\n-- Testing count() on arrays containing references --\n";
  65. $arr = array(1, array("a", "b", "c"));
  66. $arr[2] = &$arr[1];
  67. echo "Count normal" . \PHP_EOL;
  68. var_dump(count($arr, COUNT_NORMAL));
  69. echo "Count recursive" . \PHP_EOL;
  70. var_dump(count($arr, COUNT_RECURSIVE));
  71. /* closing the resource handles */
  72. fclose( $resource1 );
  73. closedir( $resource2 );
  74. ?>
  75. --EXPECT--
  76. *** Testing basic functionality of count() function ***
  77. -- Testing arrays --
  78. COUNT_NORMAL: should be 2, is 2
  79. COUNT_RECURSIVE: should be 8, is 8
  80. -- Testing hashes --
  81. COUNT_NORMAL: should be 3, is 3
  82. COUNT_RECURSIVE: should be 6, is 6
  83. -- Testing various types with no second argument --
  84. COUNT_NORMAL: should be 2, is 2
  85. -- Testing really cool arrays --
  86. COUNT_NORMAL: should be 3, is 3
  87. COUNT_RECURSIVE: should be 13, is 13
  88. *** Testing possible variations of count() function on arrays ***
  89. -- Iteration 0 --
  90. COUNT_NORMAL is 0
  91. COUNT_RECURSIVE is 0
  92. -- Iteration 1 --
  93. COUNT_NORMAL is 1
  94. COUNT_RECURSIVE is 1
  95. -- Iteration 2 --
  96. COUNT_NORMAL is 4
  97. COUNT_RECURSIVE is 7
  98. -- Iteration 3 --
  99. COUNT_NORMAL is 2
  100. COUNT_RECURSIVE is 8
  101. -- Iteration 4 --
  102. COUNT_NORMAL is 4
  103. COUNT_RECURSIVE is 4
  104. -- Iteration 5 --
  105. COUNT_NORMAL is 5
  106. COUNT_RECURSIVE is 5
  107. -- Iteration 6 --
  108. COUNT_NORMAL is 6
  109. COUNT_RECURSIVE is 6
  110. -- Iteration 7 --
  111. COUNT_NORMAL is 4
  112. COUNT_RECURSIVE is 7
  113. -- Testing count() on an empty sub-array --
  114. COUNT_NORMAL: should be 2, is 2
  115. COUNT_RECURSIVE: should be 5, is 5
  116. -- Testing count() on objects with Countable interface --
  117. COUNT_NORMAL: should be 3, is 3
  118. -- Testing count() on resource type --
  119. int(2)
  120. -- Testing count() on arrays containing references --
  121. Count normal
  122. int(3)
  123. Count recursive
  124. int(9)