array_walk_object1.phpt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. --TEST--
  2. Test array_walk() function : object functionality
  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. * Pasing object in place of 'input' argument to test object functionatlity
  11. */
  12. echo "*** Testing array_walk() : object functionality ***\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($value, $key, $user_data)
  21. {
  22. var_dump($key);
  23. var_dump($value);
  24. var_dump($user_data);
  25. echo "\n";
  26. }
  27. class MyClass
  28. {
  29. private $pri_value;
  30. public $pub_value;
  31. protected $pro_value;
  32. public function __construct($setVal)
  33. {
  34. $this->pri_value = $setVal;
  35. $this->pub_value = $setVal;
  36. $this->pro_value = $setVal;
  37. }
  38. };
  39. // object for 'input' argument
  40. $input = new MyClass(10);
  41. var_dump( array_walk($input, "callback", 1));
  42. echo "Done"
  43. ?>
  44. --EXPECTF--
  45. *** Testing array_walk() : object functionality ***
  46. %unicode|string%(18) "%r\0%rMyClass%r\0%rpri_value"
  47. int(10)
  48. int(1)
  49. %unicode|string%(9) "pub_value"
  50. int(10)
  51. int(1)
  52. %unicode|string%(12) "%r\0%r*%r\0%rpro_value"
  53. int(10)
  54. int(1)
  55. bool(true)
  56. Done