ReflectionMethod_getModifiers_basic.phpt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. --TEST--
  2. ReflectionMethod::getModifiers()
  3. --FILE--
  4. <?php
  5. function reflectMethodModifiers($class) {
  6. $classInfo = new reflectionClass($class);
  7. $methodArray = $classInfo->getMethods();
  8. foreach ($methodArray as $method) {
  9. echo "Modifiers for method $method->class::$method->name():\n";
  10. printf("0x%08x\n", $method->getModifiers());
  11. echo "\n\n";
  12. }
  13. }
  14. class TestClass
  15. {
  16. public function foo() {
  17. echo "Called foo()\n";
  18. }
  19. static function stat() {
  20. echo "Called stat()\n";
  21. }
  22. private function priv() {
  23. echo "Called priv()\n";
  24. }
  25. protected function prot() {}
  26. public final function fin() {}
  27. public function __destruct() {}
  28. public function __call($a, $b) {}
  29. public function __clone() {}
  30. public function __get($a) {}
  31. public function __set($a, $b) {}
  32. public function __unset($a) {}
  33. public function __isset($a) {}
  34. public function __tostring() {}
  35. public function __sleep() {}
  36. public function __wakeup() {}
  37. public function __set_state() {}
  38. public function __autoload() {}
  39. }
  40. class DerivedClass extends TestClass {}
  41. interface TestInterface {
  42. public function int();
  43. public function __clone();
  44. }
  45. abstract class AbstractClass {
  46. public abstract function foo();
  47. }
  48. reflectMethodModifiers("TestClass");
  49. reflectMethodModifiers("DerivedClass");
  50. reflectMethodModifiers("TestInterface");
  51. reflectMethodModifiers("AbstractClass");
  52. echo "Wrong number of params:\n";
  53. $a = new ReflectionMethod('TestClass::foo');
  54. $a->getModifiers(1);
  55. $a = new ReflectionMethod('ReflectionMethod::getModifiers');
  56. echo "\nReflectionMethod::getModifiers() modifiers:\n";
  57. printf("0x%08x\n", $a->getModifiers());
  58. ?>
  59. --EXPECTF--
  60. Modifiers for method TestClass::foo():
  61. 0x08010100
  62. Modifiers for method TestClass::stat():
  63. 0x08000101
  64. Modifiers for method TestClass::priv():
  65. 0x08010400
  66. Modifiers for method TestClass::prot():
  67. 0x08010200
  68. Modifiers for method TestClass::fin():
  69. 0x08010104
  70. Modifiers for method TestClass::__destruct():
  71. 0x08004100
  72. Modifiers for method TestClass::__call():
  73. 0x08000100
  74. Modifiers for method TestClass::__clone():
  75. 0x08008100
  76. Modifiers for method TestClass::__get():
  77. 0x08000100
  78. Modifiers for method TestClass::__set():
  79. 0x08000100
  80. Modifiers for method TestClass::__unset():
  81. 0x08000100
  82. Modifiers for method TestClass::__isset():
  83. 0x08000100
  84. Modifiers for method TestClass::__tostring():
  85. 0x08000100
  86. Modifiers for method TestClass::__sleep():
  87. 0x08010100
  88. Modifiers for method TestClass::__wakeup():
  89. 0x08010100
  90. Modifiers for method TestClass::__set_state():
  91. 0x08010100
  92. Modifiers for method TestClass::__autoload():
  93. 0x08010100
  94. Modifiers for method TestClass::foo():
  95. 0x08010100
  96. Modifiers for method TestClass::stat():
  97. 0x08000101
  98. Modifiers for method TestClass::priv():
  99. 0x08010400
  100. Modifiers for method TestClass::prot():
  101. 0x08010200
  102. Modifiers for method TestClass::fin():
  103. 0x08010104
  104. Modifiers for method TestClass::__destruct():
  105. 0x08004100
  106. Modifiers for method TestClass::__call():
  107. 0x08000100
  108. Modifiers for method TestClass::__clone():
  109. 0x08008100
  110. Modifiers for method TestClass::__get():
  111. 0x08000100
  112. Modifiers for method TestClass::__set():
  113. 0x08000100
  114. Modifiers for method TestClass::__unset():
  115. 0x08000100
  116. Modifiers for method TestClass::__isset():
  117. 0x08000100
  118. Modifiers for method TestClass::__tostring():
  119. 0x08000100
  120. Modifiers for method TestClass::__sleep():
  121. 0x08010100
  122. Modifiers for method TestClass::__wakeup():
  123. 0x08010100
  124. Modifiers for method TestClass::__set_state():
  125. 0x08010100
  126. Modifiers for method TestClass::__autoload():
  127. 0x08010100
  128. Modifiers for method TestInterface::int():
  129. 0x08000102
  130. Modifiers for method TestInterface::__clone():
  131. 0x08000102
  132. Modifiers for method AbstractClass::foo():
  133. 0x08010102
  134. Wrong number of params:
  135. Warning: ReflectionMethod::getModifiers() expects exactly 0 parameters, 1 given in %sReflectionMethod_getModifiers_basic.php on line %d
  136. ReflectionMethod::getModifiers() modifiers:
  137. 0x00000100