例如:
/** \file test.php
* this is test.php file
*/
/**
* This is foo
* @param $myPar
*/
function foo($myPar) {
}
Doxygen 生成如下内容:
<td class="paramtype">
$
</td>
<td class="paramname">
<em> myPar </em>
</td>
为什么?似乎 Doxygen 正在使用另一个解析器而不是 PHP 解析器。