通常我们会在类和函数上添加注释来探索类及其函数。
LIKE:
/**
* some descriptions
* @params
*/
class NewClass {
/**
* method description
* @params
*/
public function first(){
}
/**
* method description
* @params
*/
public function second(){
}
}
我想检索关于PHP CLASS和RESPECTIVE CLASS FUNCTIONS的注释。
任何人都可以帮助我吗?
The required output is::
array(0=>array( 'type'=>'class','comment'=>"/*** some descriptions* @params*/"),
1=> array( 'type'=>'method','comment'=>"/*** method description* @params*/"),
2=> array( 'type'=>'method','comment'=>"/*** method description* @params*/")
);