【发布时间】:2011-05-26 13:18:15
【问题描述】:
我有一个我想要记录的 php (doxygen.php) 文件。问题是我在 linux 上运行doxygen doxygen.php 它不会生成任何东西...index.html 文件是空的。我明白了
Warning: ignoring unknown tag `php' at line 1, file doxygen.php
Warning: ignoring unknown tag `does' at line 4, file doxygen.php
Warning: ignoring unknown tag `nothing' at line 4, file doxygen.php
....
它似乎无法正确识别 cmets。我的 doxygen.php 文件有这个:
<?php
/* does nothing
* @param teste
* @return null
*/
function foo($foo) {
echo 'hi'.$foo;
return null;
}
?>
【问题讨论】:
-
你运行的是什么版本的 doxygen?