array_walk_object2.phpt 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. --TEST--
  2. Test array_walk() function : object functionality - array of objects
  3. --FILE--
  4. <?php
  5. /* Prototype : 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. * Testing array_walk() with an array of objects
  11. */
  12. echo "*** Testing array_walk() : array of objects ***\n";
  13. /*
  14. * Prototype : callback(mixed $value, mixed $key, int $addvalue
  15. * Parameters : $value - values in given input array
  16. * $key - keys in given input array
  17. * $addvalue - value to be added
  18. * Description : Function adds the addvalue to each element of an array
  19. */
  20. function callback_private($value, $key, $addValue)
  21. {
  22. echo "value : ";
  23. var_dump($value->getValue());
  24. echo "key : ";
  25. var_dump($key);
  26. }
  27. function callback_public($value, $key)
  28. {
  29. echo "value : ";
  30. var_dump($value->pub_value);
  31. }
  32. function callback_protected($value, $key)
  33. {
  34. echo "value : ";
  35. var_dump($value->get_pro_value());
  36. }
  37. class MyClass
  38. {
  39. private $pri_value;
  40. public $pub_value;
  41. protected $pro_value;
  42. public function __construct($setVal)
  43. {
  44. $this->pri_value = $setVal;
  45. $this->pub_value = $setVal;
  46. $this->pro_value = $setVal;
  47. }
  48. public function getValue()
  49. {
  50. return $this->pri_value;
  51. }
  52. public function get_pro_value()
  53. {
  54. return $this->pro_value;
  55. }
  56. };
  57. // array containing objects of MyClass
  58. $input = array (
  59. new MyClass(3),
  60. new MyClass(10),
  61. new MyClass(20),
  62. new MyClass(-10)
  63. );
  64. echo "-- For private member --\n";
  65. var_dump( array_walk($input, "callback_private", 1));
  66. echo "-- For public member --\n";
  67. var_dump( array_walk($input, "callback_public"));
  68. echo "-- For protected member --\n";
  69. var_dump( array_walk($input, "callback_protected"));
  70. echo "Done"
  71. ?>
  72. --EXPECTF--
  73. *** Testing array_walk() : array of objects ***
  74. -- For private member --
  75. value : int(3)
  76. key : int(0)
  77. value : int(10)
  78. key : int(1)
  79. value : int(20)
  80. key : int(2)
  81. value : int(-10)
  82. key : int(3)
  83. bool(true)
  84. -- For public member --
  85. value : int(3)
  86. value : int(10)
  87. value : int(20)
  88. value : int(-10)
  89. bool(true)
  90. -- For protected member --
  91. value : int(3)
  92. value : int(10)
  93. value : int(20)
  94. value : int(-10)
  95. bool(true)
  96. Done