ReflectionMethod_invoke_basic.phpt 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. --TEST--
  2. ReflectionMethod::invoke()
  3. --FILE--
  4. <?php
  5. class TestClass {
  6. public $prop = 2;
  7. public function foo() {
  8. echo "Called foo(), property = $this->prop\n";
  9. var_dump($this);
  10. return "Return Val";
  11. }
  12. public function willThrow() {
  13. throw new Exception("Called willThrow()");
  14. }
  15. public function methodWithArgs($a, $b) {
  16. echo "Called methodWithArgs($a, $b)\n";
  17. }
  18. public static function staticMethod() {
  19. echo "Called staticMethod()\n";
  20. var_dump($this);
  21. }
  22. private static function privateMethod() {
  23. echo "Called privateMethod()\n";
  24. }
  25. }
  26. abstract class AbstractClass {
  27. abstract function foo();
  28. }
  29. $foo = new ReflectionMethod('TestClass', 'foo');
  30. $methodWithArgs = new ReflectionMethod('TestClass', 'methodWithArgs');
  31. $staticMethod = new ReflectionMethod('TestClass::staticMethod');
  32. $privateMethod = new ReflectionMethod("TestClass::privateMethod");
  33. $methodThatThrows = new ReflectionMethod("TestClass::willThrow");
  34. $testClassInstance = new TestClass();
  35. $testClassInstance->prop = "Hello";
  36. echo "Public method:\n";
  37. var_dump($foo->invoke($testClassInstance));
  38. var_dump($foo->invoke($testClassInstance, true));
  39. echo "\nMethod with args:\n";
  40. var_dump($methodWithArgs->invoke($testClassInstance, 1, "arg2"));
  41. var_dump($methodWithArgs->invoke($testClassInstance, 1, "arg2", 3));
  42. echo "\nStatic method:\n";
  43. var_dump($staticMethod->invoke());
  44. var_dump($staticMethod->invoke(true));
  45. var_dump($staticMethod->invoke(new stdClass()));
  46. echo "\nMethod that throws an exception:\n";
  47. try {
  48. var_dump($methodThatThrows->invoke($testClassInstance));
  49. } catch (Exception $exc) {
  50. var_dump($exc->getMessage());
  51. }
  52. ?>
  53. --EXPECTF--
  54. Public method:
  55. Called foo(), property = Hello
  56. object(TestClass)#%d (1) {
  57. ["prop"]=>
  58. string(5) "Hello"
  59. }
  60. string(10) "Return Val"
  61. Called foo(), property = Hello
  62. object(TestClass)#%d (1) {
  63. ["prop"]=>
  64. string(5) "Hello"
  65. }
  66. string(10) "Return Val"
  67. Method with args:
  68. Called methodWithArgs(1, arg2)
  69. NULL
  70. Called methodWithArgs(1, arg2)
  71. NULL
  72. Static method:
  73. Warning: ReflectionMethod::invoke() expects at least 1 parameter, 0 given in %s on line %d
  74. NULL
  75. Called staticMethod()
  76. Notice: Undefined variable: this in %s on line %d
  77. NULL
  78. NULL
  79. Called staticMethod()
  80. Notice: Undefined variable: this in %s on line %d
  81. NULL
  82. NULL
  83. Method that throws an exception:
  84. string(18) "Called willThrow()"