ReflectionParameter_getDeclaringFunction_basic.phpt 830 B

12345678910111213141516171819202122232425262728293031323334353637
  1. --TEST--
  2. ReflectionParameter::getDeclaringFunction()
  3. --CREDITS--
  4. Stefan Koopmanschap <stefan@stefankoopmanschap.nl>
  5. #testfest roosendaal on 2008-05-10
  6. --FILE--
  7. <?php
  8. function ReflectionParameterTest($test, $test2 = null) {
  9. echo $test;
  10. }
  11. $reflect = new ReflectionFunction('ReflectionParameterTest');
  12. $params = $reflect->getParameters();
  13. foreach($params as $key => $value) {
  14. echo $value->getDeclaringFunction() . "\n";
  15. }
  16. ?>
  17. ==DONE==
  18. --EXPECTF--
  19. Function [ <user> function ReflectionParameterTest ] {
  20. @@ %s.php %d - %d
  21. - Parameters [2] {
  22. Parameter #0 [ <required> $test ]
  23. Parameter #1 [ <optional> $test2 = NULL ]
  24. }
  25. }
  26. Function [ <user> function ReflectionParameterTest ] {
  27. @@ %s.php %d - %d
  28. - Parameters [2] {
  29. Parameter #0 [ <required> $test ]
  30. Parameter #1 [ <optional> $test2 = NULL ]
  31. }
  32. }
  33. ==DONE==