ReflectionClass_export_basic2.phpt 677 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --TEST--
  2. ReflectionClass::export() - ensure inherited private props are hidden.
  3. --FILE--
  4. <?php
  5. Class c {
  6. private $a;
  7. static private $b;
  8. }
  9. class d extends c {}
  10. ReflectionClass::export("c");
  11. ReflectionClass::export("d");
  12. ?>
  13. --EXPECTF--
  14. Class [ <user> class c ] {
  15. @@ %s 2-5
  16. - Constants [0] {
  17. }
  18. - Static properties [1] {
  19. Property [ private static $b ]
  20. }
  21. - Static methods [0] {
  22. }
  23. - Properties [1] {
  24. Property [ <default> private $a ]
  25. }
  26. - Methods [0] {
  27. }
  28. }
  29. Class [ <user> class d extends c ] {
  30. @@ %s 7-7
  31. - Constants [0] {
  32. }
  33. - Static properties [0] {
  34. }
  35. - Static methods [0] {
  36. }
  37. - Properties [0] {
  38. }
  39. - Methods [0] {
  40. }
  41. }