array_search_variation3.phpt 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --TEST--
  2. Test array_search() function : usage variations - haystack as sub-array/object
  3. --FILE--
  4. <?php
  5. /*
  6. * Prototype : mixed array_search ( mixed $needle, array $haystack [, bool $strict] )
  7. * Description: Searches haystack for needle and returns the key if it is found in the array, FALSE otherwise
  8. * Source Code: ext/standard/array.c
  9. */
  10. /* checking for sub-arrays with array_search() */
  11. echo "*** Testing sub-arrays with array_search() ***\n";
  12. $sub_array = array (
  13. "one",
  14. array(1, 2 => "two", "three" => 3),
  15. 4 => "four",
  16. "five" => 5,
  17. array('', 'i')
  18. );
  19. var_dump( array_search("four", $sub_array) );
  20. //checking for element in a sub-array
  21. var_dump( array_search(3, $sub_array[1]) );
  22. var_dump( array_search(array('','i'), $sub_array) );
  23. /* checking for objects in array_search() */
  24. echo "\n*** Testing objects with array_search() ***\n";
  25. class array_search_check {
  26. public $array_var = array(1=>"one", "two"=>2, 3=>3);
  27. public function foo() {
  28. echo "Public function\n";
  29. }
  30. }
  31. $array_search_obj = new array_search_check(); //creating new object
  32. //error: as wrong datatype for second argument
  33. var_dump( array_search("array_var", $array_search_obj) );
  34. //error: as wrong datatype for second argument
  35. var_dump( array_search("foo", $array_search_obj) );
  36. //element found as "one" exists in array $array_var
  37. var_dump( array_search("one", $array_search_obj->array_var) );
  38. echo "Done\n";
  39. ?>
  40. --EXPECTF--
  41. *** Testing sub-arrays with array_search() ***
  42. int(4)
  43. string(5) "three"
  44. int(5)
  45. *** Testing objects with array_search() ***
  46. Warning: array_search() expects parameter 2 to be array, object given in %s on line %d
  47. NULL
  48. Warning: array_search() expects parameter 2 to be array, object given in %s on line %d
  49. NULL
  50. int(1)
  51. Done