ReflectionClass_getConstructor_basic.phpt 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. --TEST--
  2. ReflectionClass::getConstructor()
  3. --FILE--
  4. <?php
  5. class NewCtor {
  6. function __construct() {}
  7. }
  8. class ExtendsNewCtor extends NewCtor {
  9. }
  10. class OldCtor {
  11. function OldCtor() {}
  12. }
  13. class ExtendsOldCtor extends OldCtor {
  14. }
  15. class X {
  16. function Y() {}
  17. }
  18. class Y extends X {
  19. }
  20. class OldAndNewCtor {
  21. function OldAndNewCtor() {}
  22. function __construct() {}
  23. }
  24. class NewAndOldCtor {
  25. function __construct() {}
  26. function NewAndOldCtor() {}
  27. }
  28. class B {
  29. function B() {}
  30. }
  31. class C extends B {
  32. function C() {}
  33. }
  34. class D1 extends C {
  35. function __construct() {}
  36. }
  37. class D2 extends C {
  38. }
  39. $classes = array('NewCtor', 'ExtendsNewCtor', 'OldCtor', 'ExtendsOldCtor',
  40. 'OldAndNewCtor', 'NewAndOldCtor', 'B', 'C', 'D1', 'D2', 'X', 'Y');
  41. foreach ($classes as $class) {
  42. $rc = new ReflectionClass($class);
  43. $rm = $rc->getConstructor();
  44. if ($rm != null) {
  45. echo "Constructor of $class: " . $rm->getName() . "\n";
  46. } else {
  47. echo "No constructor for $class\n";
  48. }
  49. }
  50. ?>
  51. --EXPECTF--
  52. Strict Standards: Redefining already defined constructor for class OldAndNewCtor in %s on line %d
  53. Constructor of NewCtor: __construct
  54. Constructor of ExtendsNewCtor: __construct
  55. Constructor of OldCtor: OldCtor
  56. Constructor of ExtendsOldCtor: OldCtor
  57. Constructor of OldAndNewCtor: __construct
  58. Constructor of NewAndOldCtor: __construct
  59. Constructor of B: B
  60. Constructor of C: C
  61. Constructor of D1: __construct
  62. Constructor of D2: C
  63. No constructor for X
  64. No constructor for Y