ReflectionMethod_invokeArgs_error3.phpt 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. --TEST--
  2. ReflectionMethod::invokeArgs() further errors
  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 static function staticMethod() {
  13. echo "Called staticMethod()\n";
  14. var_dump($this);
  15. }
  16. private static function privateMethod() {
  17. echo "Called privateMethod()\n";
  18. }
  19. }
  20. abstract class AbstractClass {
  21. abstract function foo();
  22. }
  23. $testClassInstance = new TestClass();
  24. $testClassInstance->prop = "Hello";
  25. $foo = new ReflectionMethod($testClassInstance, 'foo');
  26. $staticMethod = new ReflectionMethod('TestClass::staticMethod');
  27. $privateMethod = new ReflectionMethod("TestClass::privateMethod");
  28. echo "Wrong number of parameters:\n";
  29. var_dump($foo->invokeArgs());
  30. var_dump($foo->invokeArgs(true));
  31. echo "\nNon-instance:\n";
  32. try {
  33. var_dump($foo->invokeArgs(new stdClass(), array()));
  34. } catch (ReflectionException $e) {
  35. var_dump($e->getMessage());
  36. }
  37. echo "\nNon-object:\n";
  38. var_dump($foo->invokeArgs(true, array()));
  39. echo "\nStatic method:\n";
  40. var_dump($staticMethod->invokeArgs());
  41. var_dump($staticMethod->invokeArgs(true));
  42. var_dump($staticMethod->invokeArgs(true, array()));
  43. var_dump($staticMethod->invokeArgs(null, array()));
  44. echo "\nPrivate method:\n";
  45. try {
  46. var_dump($privateMethod->invokeArgs($testClassInstance, array()));
  47. } catch (ReflectionException $e) {
  48. var_dump($e->getMessage());
  49. }
  50. echo "\nAbstract method:\n";
  51. $abstractMethod = new ReflectionMethod("AbstractClass::foo");
  52. try {
  53. $abstractMethod->invokeArgs($testClassInstance, array());
  54. } catch (ReflectionException $e) {
  55. var_dump($e->getMessage());
  56. }
  57. try {
  58. $abstractMethod->invokeArgs(true);
  59. } catch (ReflectionException $e) {
  60. var_dump($e->getMessage());
  61. }
  62. ?>
  63. --EXPECTF--
  64. Wrong number of parameters:
  65. Warning: ReflectionMethod::invokeArgs() expects exactly 2 parameters, 0 given in %s on line %d
  66. NULL
  67. Warning: ReflectionMethod::invokeArgs() expects exactly 2 parameters, 1 given in %s on line %d
  68. NULL
  69. Non-instance:
  70. string(72) "Given object is not an instance of the class this method was declared in"
  71. Non-object:
  72. Warning: ReflectionMethod::invokeArgs() expects parameter 1 to be object, boolean given in %s on line %d
  73. NULL
  74. Static method:
  75. Warning: ReflectionMethod::invokeArgs() expects exactly 2 parameters, 0 given in %s on line %d
  76. NULL
  77. Warning: ReflectionMethod::invokeArgs() expects exactly 2 parameters, 1 given in %s on line %d
  78. NULL
  79. Warning: ReflectionMethod::invokeArgs() expects parameter 1 to be object, boolean given in %s on line %d
  80. NULL
  81. Called staticMethod()
  82. Notice: Undefined variable: this in %s on line %d
  83. NULL
  84. NULL
  85. Private method:
  86. string(86) "Trying to invoke private method TestClass::privateMethod() from scope ReflectionMethod"
  87. Abstract method:
  88. string(53) "Trying to invoke abstract method AbstractClass::foo()"
  89. Warning: ReflectionMethod::invokeArgs() expects exactly 2 parameters, 1 given in %s on line %d