array_uintersect_variation3.phpt 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. --TEST--
  2. Test array_uintersect() function : usage variation
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_uintersect(array arr1, array arr2 [, array ...], callback data_compare_func)
  6. * Description: Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using an user-supplied callback.
  7. * Source code: ext/standard/array.c
  8. * Alias to functions:
  9. */
  10. echo "*** Testing array_uintersect() : usage variation ***\n";
  11. // Initialise function arguments not being substituted (if any)
  12. $arr1 = array(1, 2);
  13. $arr2 = array(1, 2);
  14. //get an unset variable
  15. $unset_var = 10;
  16. unset ($unset_var);
  17. // define some classes
  18. class classWithToString
  19. {
  20. public function __toString() {
  21. return "Class A object";
  22. }
  23. }
  24. class classWithoutToString
  25. {
  26. }
  27. // heredoc string
  28. $heredoc = <<<EOT
  29. hello world
  30. EOT;
  31. // add arrays
  32. $index_array = array (1, 2, 3);
  33. $assoc_array = array ('one' => 1, 'two' => 2);
  34. //array of values to iterate over
  35. $inputs = array(
  36. // int data
  37. 'int 0' => 0,
  38. 'int 1' => 1,
  39. 'int 12345' => 12345,
  40. 'int -12345' => -2345,
  41. // float data
  42. 'float 10.5' => 10.5,
  43. 'float -10.5' => -10.5,
  44. 'float 12.3456789000e10' => 12.3456789000e10,
  45. 'float -12.3456789000e10' => -12.3456789000e10,
  46. 'float .5' => .5,
  47. // array data
  48. 'empty array' => array(),
  49. 'int indexed array' => $index_array,
  50. 'associative array' => $assoc_array,
  51. 'nested arrays' => array('foo', $index_array, $assoc_array),
  52. // null data
  53. 'uppercase NULL' => NULL,
  54. 'lowercase null' => null,
  55. // boolean data
  56. 'lowercase true' => true,
  57. 'lowercase false' =>false,
  58. 'uppercase TRUE' =>TRUE,
  59. 'uppercase FALSE' =>FALSE,
  60. // empty data
  61. 'empty string DQ' => "",
  62. 'empty string SQ' => '',
  63. // string data
  64. 'string DQ' => "string",
  65. 'string SQ' => 'string',
  66. 'mixed case string' => "sTrInG",
  67. 'heredoc' => $heredoc,
  68. // object data
  69. 'instance of classWithToString' => new classWithToString(),
  70. 'instance of classWithoutToString' => new classWithoutToString(),
  71. // undefined data
  72. 'undefined var' => @$undefined_var,
  73. // unset data
  74. 'unset var' => @$unset_var,
  75. );
  76. // loop through each element of the array for data_compare_func
  77. foreach($inputs as $key =>$value) {
  78. echo "\n--$key--\n";
  79. var_dump( array_uintersect($arr1, $arr2, $value) );
  80. };
  81. ?>
  82. ===DONE===
  83. --EXPECTF--
  84. *** Testing array_uintersect() : usage variation ***
  85. --int 0--
  86. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  87. NULL
  88. --int 1--
  89. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  90. NULL
  91. --int 12345--
  92. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  93. NULL
  94. --int -12345--
  95. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  96. NULL
  97. --float 10.5--
  98. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  99. NULL
  100. --float -10.5--
  101. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  102. NULL
  103. --float 12.3456789000e10--
  104. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  105. NULL
  106. --float -12.3456789000e10--
  107. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  108. NULL
  109. --float .5--
  110. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  111. NULL
  112. --empty array--
  113. Warning: array_uintersect() expects parameter 3 to be a valid callback, array must have exactly two members in %sarray_uintersect_variation3.php on line %d
  114. NULL
  115. --int indexed array--
  116. Warning: array_uintersect() expects parameter 3 to be a valid callback, array must have exactly two members in %sarray_uintersect_variation3.php on line %d
  117. NULL
  118. --associative array--
  119. Warning: array_uintersect() expects parameter 3 to be a valid callback, first array member is not a valid class name or object in %sarray_uintersect_variation3.php on line %d
  120. NULL
  121. --nested arrays--
  122. Warning: array_uintersect() expects parameter 3 to be a valid callback, array must have exactly two members in %sarray_uintersect_variation3.php on line %d
  123. NULL
  124. --uppercase NULL--
  125. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  126. NULL
  127. --lowercase null--
  128. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  129. NULL
  130. --lowercase true--
  131. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  132. NULL
  133. --lowercase false--
  134. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  135. NULL
  136. --uppercase TRUE--
  137. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  138. NULL
  139. --uppercase FALSE--
  140. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  141. NULL
  142. --empty string DQ--
  143. Warning: array_uintersect() expects parameter 3 to be a valid callback, function '' not found or invalid function name in %sarray_uintersect_variation3.php on line %d
  144. NULL
  145. --empty string SQ--
  146. Warning: array_uintersect() expects parameter 3 to be a valid callback, function '' not found or invalid function name in %sarray_uintersect_variation3.php on line %d
  147. NULL
  148. --string DQ--
  149. Warning: array_uintersect() expects parameter 3 to be a valid callback, function 'string' not found or invalid function name in %sarray_uintersect_variation3.php on line %d
  150. NULL
  151. --string SQ--
  152. Warning: array_uintersect() expects parameter 3 to be a valid callback, function 'string' not found or invalid function name in %sarray_uintersect_variation3.php on line %d
  153. NULL
  154. --mixed case string--
  155. Warning: array_uintersect() expects parameter 3 to be a valid callback, function 'sTrInG' not found or invalid function name in %sarray_uintersect_variation3.php on line %d
  156. NULL
  157. --heredoc--
  158. Warning: array_uintersect() expects parameter 3 to be a valid callback, function 'hello world' not found or invalid function name in %sarray_uintersect_variation3.php on line %d
  159. NULL
  160. --instance of classWithToString--
  161. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  162. NULL
  163. --instance of classWithoutToString--
  164. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  165. NULL
  166. --undefined var--
  167. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  168. NULL
  169. --unset var--
  170. Warning: array_uintersect() expects parameter 3 to be a valid callback, no array or string given in %sarray_uintersect_variation3.php on line %d
  171. NULL
  172. ===DONE===