ReflectionMethod_constructor_basic.phpt 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. --TEST--
  2. ReflectionMethod::isConstructor()
  3. --FILE--
  4. <?php
  5. class NewCtor {
  6. function __construct() {
  7. echo "In " . __METHOD__ . "\n";
  8. }
  9. }
  10. echo "New-style constructor:\n";
  11. $methodInfo = new ReflectionMethod("NewCtor::__construct");
  12. var_dump($methodInfo->isConstructor());
  13. class ExtendsNewCtor extends NewCtor {
  14. }
  15. echo "\nInherited new-style constructor\n";
  16. $methodInfo = new ReflectionMethod("ExtendsNewCtor::__construct");
  17. var_dump($methodInfo->isConstructor());
  18. class OldCtor {
  19. function OldCtor() {
  20. echo "In " . __METHOD__ . "\n";
  21. }
  22. }
  23. echo "\nOld-style constructor:\n";
  24. $methodInfo = new ReflectionMethod("OldCtor::OldCtor");
  25. var_dump($methodInfo->isConstructor());
  26. class ExtendsOldCtor extends OldCtor {
  27. }
  28. echo "\nInherited old-style constructor:\n";
  29. $methodInfo = new ReflectionMethod("ExtendsOldCtor::OldCtor");
  30. var_dump($methodInfo->isConstructor());
  31. class X {
  32. function Y() {
  33. echo "In " . __METHOD__ . "\n";
  34. }
  35. }
  36. echo "\nNot a constructor:\n";
  37. $methodInfo = new ReflectionMethod("X::Y");
  38. var_dump($methodInfo->isConstructor());
  39. class Y extends X {
  40. }
  41. echo "\nInherited method of the same name as the class:\n";
  42. $methodInfo = new ReflectionMethod("Y::Y");
  43. var_dump($methodInfo->isConstructor());
  44. class OldAndNewCtor {
  45. function OldAndNewCtor() {
  46. echo "In " . __METHOD__ . "\n";
  47. }
  48. function __construct() {
  49. echo "In " . __METHOD__ . "\n";
  50. }
  51. }
  52. echo "\nOld-style constructor:\n";
  53. $methodInfo = new ReflectionMethod("OldAndNewCtor::OldAndNewCtor");
  54. var_dump($methodInfo->isConstructor());
  55. echo "\nRedefined constructor:\n";
  56. $methodInfo = new ReflectionMethod("OldAndNewCtor::__construct");
  57. var_dump($methodInfo->isConstructor());
  58. class NewAndOldCtor {
  59. function __construct() {
  60. echo "In " . __METHOD__ . "\n";
  61. }
  62. function NewAndOldCtor() {
  63. echo "In " . __METHOD__ . "\n";
  64. }
  65. }
  66. echo "\nNew-style constructor:\n";
  67. $methodInfo = new ReflectionMethod("NewAndOldCtor::__construct");
  68. var_dump($methodInfo->isConstructor());
  69. echo "\nRedefined old-style constructor:\n";
  70. $methodInfo = new ReflectionMethod("NewAndOldCtor::NewAndOldCtor");
  71. var_dump($methodInfo->isConstructor());
  72. ?>
  73. --EXPECTF--
  74. Strict Standards: Redefining already defined constructor for class OldAndNewCtor in %s on line %d
  75. New-style constructor:
  76. bool(true)
  77. Inherited new-style constructor
  78. bool(true)
  79. Old-style constructor:
  80. bool(true)
  81. Inherited old-style constructor:
  82. bool(true)
  83. Not a constructor:
  84. bool(false)
  85. Inherited method of the same name as the class:
  86. bool(false)
  87. Old-style constructor:
  88. bool(false)
  89. Redefined constructor:
  90. bool(true)
  91. New-style constructor:
  92. bool(true)
  93. Redefined old-style constructor:
  94. bool(false)