ReflectionClass_export_basic1.phpt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. --TEST--
  2. ReflectionClass::export() - various parameters
  3. --FILE--
  4. <?php
  5. Class A {
  6. public function privf(Exception $a) {}
  7. public function pubf(A $a,
  8. $b,
  9. C $c = null,
  10. $d = K,
  11. $e = "15 chars long -",
  12. $f = null,
  13. $g = false,
  14. array $h = null) {}
  15. }
  16. Class C extends A { }
  17. define('K', "16 chars long --");
  18. ReflectionClass::export("C");
  19. ?>
  20. --EXPECTF--
  21. Class [ <user> class C extends A ] {
  22. @@ %s 14-14
  23. - Constants [0] {
  24. }
  25. - Static properties [0] {
  26. }
  27. - Static methods [0] {
  28. }
  29. - Properties [0] {
  30. }
  31. - Methods [2] {
  32. Method [ <user, inherits A> public method privf ] {
  33. @@ %s 3 - 3
  34. - Parameters [1] {
  35. Parameter #0 [ <required> Exception $a ]
  36. }
  37. }
  38. Method [ <user, inherits A> public method pubf ] {
  39. @@ %s 4 - 11
  40. - Parameters [8] {
  41. Parameter #0 [ <required> A $a ]
  42. Parameter #1 [ <required> $b ]
  43. Parameter #2 [ <optional> C or NULL $c = NULL ]
  44. Parameter #3 [ <optional> $d = '16 chars long -...' ]
  45. Parameter #4 [ <optional> $e = '15 chars long -' ]
  46. Parameter #5 [ <optional> $f = NULL ]
  47. Parameter #6 [ <optional> $g = false ]
  48. Parameter #7 [ <optional> array or NULL $h = NULL ]
  49. }
  50. }
  51. }
  52. }