将PHP文档块解析为结构化变量

时间:2014-04-28 11:00:27

标签: php

通常我们会在类和函数上添加注释来探索类及其函数。

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*/")
);

1 个答案:

答案 0 :(得分:0)