count_recursive.phpt 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. --TEST--
  2. Test count() function
  3. --SKIPIF--
  4. <?php if (!extension_loaded("spl")) die("skip no SPL extension"); ?>
  5. --FILE--
  6. <?php
  7. /* Prototype: int count ( mixed $var [, int $mode] );
  8. Discription: Count elements in an array, or properties in an object
  9. */
  10. echo "*** Testing basic functionality of count() function ***\n";
  11. print "-- Testing NULL --\n";
  12. $arr = NULL;
  13. print "COUNT_NORMAL: should be 0, is ".count($arr, COUNT_NORMAL)."\n";
  14. print "COUNT_RECURSIVE: should be 0, is ".count($arr, COUNT_RECURSIVE)."\n";
  15. print "-- Testing arrays --\n";
  16. $arr = array(1, array(3, 4, array(6, array(8))));
  17. print "COUNT_NORMAL: should be 2, is ".count($arr, COUNT_NORMAL)."\n";
  18. print "COUNT_RECURSIVE: should be 8, is ".count($arr, COUNT_RECURSIVE)."\n";
  19. print "-- Testing hashes --\n";
  20. $arr = array("a" => 1, "b" => 2, array("c" => 3, array("d" => 5)));
  21. print "COUNT_NORMAL: should be 3, is ".count($arr, COUNT_NORMAL)."\n";
  22. print "COUNT_RECURSIVE: should be 6, is ".count($arr, COUNT_RECURSIVE)."\n";
  23. print "-- Testing strings --\n";
  24. print "COUNT_NORMAL: should be 1, is ".count("string", COUNT_NORMAL)."\n";
  25. print "COUNT_RECURSIVE: should be 1, is ".count("string", COUNT_RECURSIVE)."\n";
  26. print "-- Testing various types with no second argument --\n";
  27. print "COUNT_NORMAL: should be 1, is ".count("string")."\n";
  28. print "COUNT_NORMAL: should be 2, is ".count(array("a", array("b")))."\n";
  29. $arr = array('a'=>array(NULL, NULL, NULL), 1=>array(NULL=>1, 1=>NULL),
  30. array(array(array(array(array(NULL))))));
  31. print "-- Testing really cool arrays --\n";
  32. print "COUNT_NORMAL: should be 3, is ".count($arr, COUNT_NORMAL)."\n";
  33. print "COUNT_RECURSIVE: should be 13, is ".count($arr, COUNT_RECURSIVE)."\n";
  34. echo "\n*** Testing possible variations of count() function on arrays ***";
  35. $count_array = array(
  36. array(),
  37. array( 1 => "string"),
  38. array( "" => "string", 0 => "a", NULL => "b", -1.00 => "c",
  39. array(array(array(NULL)))),
  40. array( -2.44444 => 12, array(array(1, 2, array(array("0"))))),
  41. array( "a" => 1, "b" => -2.344, "b" => "string", "c" => NULL, "d" => -2.344),
  42. array( 4 => 1, 3 => -2.344, "3" => "string", "2" => NULL,
  43. 1 => -2.344, array()),
  44. array( TRUE => TRUE, FALSE => FALSE, "" => "", " " => " ",
  45. NULL => NULL, "\x000" => "\x000", "\000" => "\000"),
  46. array( NULL, 1.23 => "Hi", "string" => "hello",
  47. array("" => "World", "-2.34" => "a", "0" => "b"))
  48. );
  49. $i = 0;
  50. foreach ($count_array as $count_value) {
  51. echo "\n-- Iteration $i --\n";
  52. print "COUNT_NORMAL is ".count($count_value, COUNT_NORMAL)."\n";
  53. print "COUNT_RECURSIVE is ".count($count_value, COUNT_RECURSIVE)."\n";
  54. $i++;
  55. }
  56. /* Testing count() by passing constant with no second argument */
  57. print "\n-- Testing count() on constants with no second argument --\n";
  58. print "COUNT_NORMAL: should be 1, is ".count(100)."\n";
  59. print "COUNT_NORMAL: should be 1, is ".count(-23.45)."\n";
  60. print "\n-- Testing count() on NULL and Unset variables --\n";
  61. print "COUNT_NORMAL: should be 0, is ".count(NULL)."\n";
  62. print "COUNT_NORMAL: should be 1, is ".count("")."\n";
  63. print "COUNT_NORMAL: should be 0, is ".@count($a)."\n";
  64. print "\n-- Testing count() on an empty sub-array --\n";
  65. $arr = array(1, array(3, 4, array()));
  66. print "COUNT_NORMAL: should be 2, is ".count($arr, COUNT_NORMAL)."\n";
  67. print "COUNT_RECURSIVE: should be 5, is ".count($arr, COUNT_RECURSIVE)."\n";
  68. echo "\n-- Testing count() on objects with Countable interface --\n";
  69. class count_class implements Countable {
  70. private $var_private;
  71. public $var_public;
  72. protected $var_protected;
  73. public function count() {
  74. return 3;
  75. }
  76. }
  77. $obj = new count_class();
  78. print "COUNT_NORMAL: should be 3, is ".count($obj)."\n";
  79. echo "\n-- Testing count() on resource type --\n";
  80. $resource1 = fopen( __FILE__, "r" ); // Creating file(stream type) resource
  81. $resource2 = opendir( "." ); // Creating dir resource
  82. /* creating an array with resources as elements */
  83. $arr_resource = array("a" => $resource1, "b" => $resource2);
  84. var_dump(count($arr_resource));
  85. echo "\n-- Testing count() on arrays containing references --\n";
  86. $arr = array(1, array("a", "b", "c"));
  87. $arr[2] = &$arr[1];
  88. $mode_arr = array( COUNT_NORMAL, COUNT_RECURSIVE, 0, 1, -1, -1.45, 2, TRUE,
  89. FALSE, NULL);
  90. for( $i =0; $i < count( $mode_arr ); $i++) {
  91. echo "For mode '$mode_arr[$i]' count is => ";
  92. var_dump(count($arr, $mode_arr[$i]));
  93. }
  94. echo "\n-- Testing error conditions --";
  95. var_dump( count() ); // No. of args = 0
  96. var_dump( count(array(), COUNT_NORMAL, 100) ); // No. of args > expected
  97. /* Testing Invalid type arguments */
  98. var_dump( count("string", ABCD) );
  99. var_dump( count(100, "string") );
  100. var_dump( count(array(), "") );
  101. echo "\nDone";
  102. /* closing the resource handles */
  103. fclose( $resource1 );
  104. closedir( $resource2 );
  105. ?>
  106. --EXPECTF--
  107. *** Testing basic functionality of count() function ***
  108. -- Testing NULL --
  109. COUNT_NORMAL: should be 0, is 0
  110. COUNT_RECURSIVE: should be 0, is 0
  111. -- Testing arrays --
  112. COUNT_NORMAL: should be 2, is 2
  113. COUNT_RECURSIVE: should be 8, is 8
  114. -- Testing hashes --
  115. COUNT_NORMAL: should be 3, is 3
  116. COUNT_RECURSIVE: should be 6, is 6
  117. -- Testing strings --
  118. COUNT_NORMAL: should be 1, is 1
  119. COUNT_RECURSIVE: should be 1, is 1
  120. -- Testing various types with no second argument --
  121. COUNT_NORMAL: should be 1, is 1
  122. COUNT_NORMAL: should be 2, is 2
  123. -- Testing really cool arrays --
  124. COUNT_NORMAL: should be 3, is 3
  125. COUNT_RECURSIVE: should be 13, is 13
  126. *** Testing possible variations of count() function on arrays ***
  127. -- Iteration 0 --
  128. COUNT_NORMAL is 0
  129. COUNT_RECURSIVE is 0
  130. -- Iteration 1 --
  131. COUNT_NORMAL is 1
  132. COUNT_RECURSIVE is 1
  133. -- Iteration 2 --
  134. COUNT_NORMAL is 4
  135. COUNT_RECURSIVE is 7
  136. -- Iteration 3 --
  137. COUNT_NORMAL is 2
  138. COUNT_RECURSIVE is 8
  139. -- Iteration 4 --
  140. COUNT_NORMAL is 4
  141. COUNT_RECURSIVE is 4
  142. -- Iteration 5 --
  143. COUNT_NORMAL is 5
  144. COUNT_RECURSIVE is 5
  145. -- Iteration 6 --
  146. COUNT_NORMAL is 6
  147. COUNT_RECURSIVE is 6
  148. -- Iteration 7 --
  149. COUNT_NORMAL is 4
  150. COUNT_RECURSIVE is 7
  151. -- Testing count() on constants with no second argument --
  152. COUNT_NORMAL: should be 1, is 1
  153. COUNT_NORMAL: should be 1, is 1
  154. -- Testing count() on NULL and Unset variables --
  155. COUNT_NORMAL: should be 0, is 0
  156. COUNT_NORMAL: should be 1, is 1
  157. COUNT_NORMAL: should be 0, is 0
  158. -- Testing count() on an empty sub-array --
  159. COUNT_NORMAL: should be 2, is 2
  160. COUNT_RECURSIVE: should be 5, is 5
  161. -- Testing count() on objects with Countable interface --
  162. COUNT_NORMAL: should be 3, is 3
  163. -- Testing count() on resource type --
  164. int(2)
  165. -- Testing count() on arrays containing references --
  166. For mode '0' count is => int(3)
  167. For mode '1' count is => int(9)
  168. For mode '0' count is => int(3)
  169. For mode '1' count is => int(9)
  170. For mode '-1' count is => int(3)
  171. For mode '-1.45' count is => int(3)
  172. For mode '2' count is => int(3)
  173. For mode '1' count is => int(9)
  174. For mode '' count is => int(3)
  175. For mode '' count is => int(3)
  176. -- Testing error conditions --
  177. Warning: count() expects at least 1 parameter, 0 given in %s on line %d
  178. NULL
  179. Warning: count() expects at most 2 parameters, 3 given in %s on line %d
  180. NULL
  181. Notice: Use of undefined constant ABCD - assumed 'ABCD' in %s on line %d
  182. Warning: count() expects parameter 2 to be long, %s given in %s on line %d
  183. NULL
  184. Warning: count() expects parameter 2 to be long, %s given in %s on line %d
  185. NULL
  186. Warning: count() expects parameter 2 to be long, %s given in %s on line %d
  187. NULL
  188. Done