ReflectionMethod_invoke_error1.phpt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. --TEST--
  2. ReflectionMethod::invoke() 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. private static function privateMethod() {
  13. echo "Called privateMethod()\n";
  14. }
  15. }
  16. abstract class AbstractClass {
  17. abstract function foo();
  18. }
  19. $foo = new ReflectionMethod('TestClass', 'foo');
  20. $privateMethod = new ReflectionMethod("TestClass::privateMethod");
  21. $testClassInstance = new TestClass();
  22. $testClassInstance->prop = "Hello";
  23. echo "invoke() on a non-object:\n";
  24. try {
  25. var_dump($foo->invoke(true));
  26. } catch (ReflectionException $e) {
  27. var_dump($e->getMessage());
  28. }
  29. echo "\ninvoke() on a non-instance:\n";
  30. try {
  31. var_dump($foo->invoke(new stdClass()));
  32. } catch (ReflectionException $e) {
  33. var_dump($e->getMessage());
  34. }
  35. echo "\nPrivate method:\n";
  36. try {
  37. var_dump($privateMethod->invoke($testClassInstance));
  38. } catch (ReflectionException $e) {
  39. var_dump($e->getMessage());
  40. }
  41. echo "\nAbstract method:\n";
  42. $abstractMethod = new ReflectionMethod("AbstractClass::foo");
  43. try {
  44. $abstractMethod->invoke(true);
  45. } catch (ReflectionException $e) {
  46. var_dump($e->getMessage());
  47. }
  48. ?>
  49. --EXPECTF--
  50. invoke() on a non-object:
  51. string(29) "Non-object passed to Invoke()"
  52. invoke() on a non-instance:
  53. string(72) "Given object is not an instance of the class this method was declared in"
  54. Private method:
  55. string(86) "Trying to invoke private method TestClass::privateMethod() from scope ReflectionMethod"
  56. Abstract method:
  57. string(53) "Trying to invoke abstract method AbstractClass::foo()"