I want to print all class names and methods for a PHP specific f开发者_JS百科ile. Here's the pattern:
public function methodName()
class className extends anotherClassName{
Desired output:
methodName
className
What about using Reflection?
I want to print all class names and methods for a PHP specific f开发者_JS百科ile. Here's the pattern:
public function methodName()
class className extends anotherClassName{
Desired output:
methodName
className
What about using Reflection?
精彩评论