array_walk_variation7.phpt 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. --TEST--
  2. Test array_walk() function : usage variations - anonymous callback function
  3. --FILE--
  4. <?php
  5. /* Prototype : proto bool array_walk(array $input, string $funcname [, mixed $userdata])
  6. * Description: Apply a user function to every member of an array
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Passing anonymous(run-time) callback function with following variations:
  11. * with one parameter
  12. * two parameters
  13. * three parameters
  14. * extra parameters
  15. * without parameters
  16. */
  17. echo "*** Testing array_walk() : anonymous function as callback ***\n";
  18. $input = array(2, 5, 10, 0);
  19. echo "-- Anonymous function with one argument --\n";
  20. var_dump( array_walk($input, create_function('$value', 'var_dump($value); echo "\n";')));
  21. echo "-- Anonymous function with two arguments --\n";
  22. var_dump( array_walk($input, create_function('$value, $key', 'var_dump($key); var_dump($value); echo "\n";')));
  23. echo "-- Anonymous function with three arguments --\n";
  24. var_dump( array_walk($input, create_function('$value, $key, $user_data', 'var_dump($key); var_dump($value); var_dump($user_data); echo "\n";'), 10));
  25. echo "-- Anonymous function with one more argument --\n";
  26. var_dump( array_walk($input, create_function('$value, $key, $user_data', 'var_dump($key); var_dump($value); var_dump($user_data); echo "\n";'), 20, 30));
  27. echo "-- Anonymous function with null argument --\n";
  28. var_dump( array_walk( $input, create_function(null, 'echo "1\n";')));
  29. echo "Done"
  30. ?>
  31. --EXPECTF--
  32. *** Testing array_walk() : anonymous function as callback ***
  33. -- Anonymous function with one argument --
  34. int(2)
  35. int(5)
  36. int(10)
  37. int(0)
  38. bool(true)
  39. -- Anonymous function with two arguments --
  40. int(0)
  41. int(2)
  42. int(1)
  43. int(5)
  44. int(2)
  45. int(10)
  46. int(3)
  47. int(0)
  48. bool(true)
  49. -- Anonymous function with three arguments --
  50. int(0)
  51. int(2)
  52. int(10)
  53. int(1)
  54. int(5)
  55. int(10)
  56. int(2)
  57. int(10)
  58. int(10)
  59. int(3)
  60. int(0)
  61. int(10)
  62. bool(true)
  63. -- Anonymous function with one more argument --
  64. Warning: array_walk() expects at most 3 parameters, 4 given in %s on line %d
  65. NULL
  66. -- Anonymous function with null argument --
  67. 1
  68. 1
  69. 1
  70. 1
  71. bool(true)
  72. Done