ReflectionMethod_basic1.phpt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. --TEST--
  2. ReflectionMethod class - various methods
  3. --FILE--
  4. <?php
  5. function reflectMethod($class, $method) {
  6. $methodInfo = new ReflectionMethod($class, $method);
  7. echo "**********************************\n";
  8. echo "Reflecting on method $class::$method()\n\n";
  9. echo "\nisFinal():\n";
  10. var_dump($methodInfo->isFinal());
  11. echo "\nisAbstract():\n";
  12. var_dump($methodInfo->isAbstract());
  13. echo "\nisPublic():\n";
  14. var_dump($methodInfo->isPublic());
  15. echo "\nisPrivate():\n";
  16. var_dump($methodInfo->isPrivate());
  17. echo "\nisProtected():\n";
  18. var_dump($methodInfo->isProtected());
  19. echo "\nisStatic():\n";
  20. var_dump($methodInfo->isStatic());
  21. echo "\nisConstructor():\n";
  22. var_dump($methodInfo->isConstructor());
  23. echo "\nisDestructor():\n";
  24. var_dump($methodInfo->isDestructor());
  25. echo "\n**********************************\n";
  26. }
  27. class TestClass
  28. {
  29. public function foo() {
  30. echo "Called foo()\n";
  31. }
  32. static function stat() {
  33. echo "Called stat()\n";
  34. }
  35. private function priv() {
  36. echo "Called priv()\n";
  37. }
  38. protected function prot() {}
  39. public function __destruct() {}
  40. }
  41. class DerivedClass extends TestClass {}
  42. interface TestInterface {
  43. public function int();
  44. }
  45. reflectMethod("DerivedClass", "foo");
  46. reflectMethod("TestClass", "stat");
  47. reflectMethod("TestClass", "priv");
  48. reflectMethod("TestClass", "prot");
  49. reflectMethod("DerivedClass", "prot");
  50. reflectMethod("TestInterface", "int");
  51. reflectMethod("ReflectionProperty", "__construct");
  52. reflectMethod("TestClass", "__destruct");
  53. ?>
  54. --EXPECT--
  55. **********************************
  56. Reflecting on method DerivedClass::foo()
  57. isFinal():
  58. bool(false)
  59. isAbstract():
  60. bool(false)
  61. isPublic():
  62. bool(true)
  63. isPrivate():
  64. bool(false)
  65. isProtected():
  66. bool(false)
  67. isStatic():
  68. bool(false)
  69. isConstructor():
  70. bool(false)
  71. isDestructor():
  72. bool(false)
  73. **********************************
  74. **********************************
  75. Reflecting on method TestClass::stat()
  76. isFinal():
  77. bool(false)
  78. isAbstract():
  79. bool(false)
  80. isPublic():
  81. bool(true)
  82. isPrivate():
  83. bool(false)
  84. isProtected():
  85. bool(false)
  86. isStatic():
  87. bool(true)
  88. isConstructor():
  89. bool(false)
  90. isDestructor():
  91. bool(false)
  92. **********************************
  93. **********************************
  94. Reflecting on method TestClass::priv()
  95. isFinal():
  96. bool(false)
  97. isAbstract():
  98. bool(false)
  99. isPublic():
  100. bool(false)
  101. isPrivate():
  102. bool(true)
  103. isProtected():
  104. bool(false)
  105. isStatic():
  106. bool(false)
  107. isConstructor():
  108. bool(false)
  109. isDestructor():
  110. bool(false)
  111. **********************************
  112. **********************************
  113. Reflecting on method TestClass::prot()
  114. isFinal():
  115. bool(false)
  116. isAbstract():
  117. bool(false)
  118. isPublic():
  119. bool(false)
  120. isPrivate():
  121. bool(false)
  122. isProtected():
  123. bool(true)
  124. isStatic():
  125. bool(false)
  126. isConstructor():
  127. bool(false)
  128. isDestructor():
  129. bool(false)
  130. **********************************
  131. **********************************
  132. Reflecting on method DerivedClass::prot()
  133. isFinal():
  134. bool(false)
  135. isAbstract():
  136. bool(false)
  137. isPublic():
  138. bool(false)
  139. isPrivate():
  140. bool(false)
  141. isProtected():
  142. bool(true)
  143. isStatic():
  144. bool(false)
  145. isConstructor():
  146. bool(false)
  147. isDestructor():
  148. bool(false)
  149. **********************************
  150. **********************************
  151. Reflecting on method TestInterface::int()
  152. isFinal():
  153. bool(false)
  154. isAbstract():
  155. bool(true)
  156. isPublic():
  157. bool(true)
  158. isPrivate():
  159. bool(false)
  160. isProtected():
  161. bool(false)
  162. isStatic():
  163. bool(false)
  164. isConstructor():
  165. bool(false)
  166. isDestructor():
  167. bool(false)
  168. **********************************
  169. **********************************
  170. Reflecting on method ReflectionProperty::__construct()
  171. isFinal():
  172. bool(false)
  173. isAbstract():
  174. bool(false)
  175. isPublic():
  176. bool(true)
  177. isPrivate():
  178. bool(false)
  179. isProtected():
  180. bool(false)
  181. isStatic():
  182. bool(false)
  183. isConstructor():
  184. bool(true)
  185. isDestructor():
  186. bool(false)
  187. **********************************
  188. **********************************
  189. Reflecting on method TestClass::__destruct()
  190. isFinal():
  191. bool(false)
  192. isAbstract():
  193. bool(false)
  194. isPublic():
  195. bool(true)
  196. isPrivate():
  197. bool(false)
  198. isProtected():
  199. bool(false)
  200. isStatic():
  201. bool(false)
  202. isConstructor():
  203. bool(false)
  204. isDestructor():
  205. bool(true)
  206. **********************************