ReflectionMethod_invoke_error2.phpt 701 B

1234567891011121314151617181920212223242526272829303132
  1. --TEST--
  2. ReflectionMethod::invoke() further errors
  3. --FILE--
  4. <?php
  5. class TestClass {
  6. public function methodWithArgs($a, $b) {
  7. echo "Called methodWithArgs($a, $b)\n";
  8. }
  9. }
  10. $methodWithArgs = new ReflectionMethod('TestClass', 'methodWithArgs');
  11. $testClassInstance = new TestClass();
  12. echo "\nMethod with args:\n";
  13. var_dump($methodWithArgs->invoke($testClassInstance));
  14. ?>
  15. --EXPECTF--
  16. Method with args:
  17. Warning: Missing argument 1 for TestClass::methodWithArgs() in %s on line %d
  18. Warning: Missing argument 2 for TestClass::methodWithArgs() in %s on line %d
  19. Notice: Undefined variable: a in %s on line %d
  20. Notice: Undefined variable: b in %s on line %d
  21. Called methodWithArgs(, )
  22. NULL