代码之家  ›  专栏  ›  技术社区  ›  MathGladiator

特殊意见和预处理

  •  0
  • MathGladiator  · 技术社区  · 15 年前

    是表单的注释

    /*:[url=users/%id]:*/
    

    有没有文档工具包会有问题(特别是对于PHP)?或者其他的注释预处理器?(有关) http://code.google.com/p/caret/ )

    1 回复  |  直到 15 年前
        1
  •  1
  •   mauris    15 年前

    通过phpdoc,这不应该是个问题。

    phpDoc从用starting定义的注释中读取 /** 不是 /* .

    phpDoc注释条目的一个例子是:

    /**
     * Description of this function
     * @param int Number in
     * @return int|string number or string out
     */
    

    这不应该与你所说的评论相冲突。