2

我可以从 phpDocumentor 2 中获取解析数据的 XML 表示吗?我已经尝试过 checkstyle 模板,但我只得到没有数据的文件名。我想使用 xml 作为可以集成到另一个站点的数据源。

Checkstyle 输出:

<?xml version="1.0"?>
<checkstyle version="1.3.0">
  <file name="file1.php"/>
  <file name="file2.php"/>
  <file name="file3.php"/>
  ... etc ...
</checkstyle>
4

3 回答 3

1

I was trying to get the xml file. This is what I did parsing the directories and getting the xml file.

phpdoc -d /path/to/src/ -t output-dir --template=xml
于 2013-12-29T08:46:57.963 回答
0

我认为phpdoc project:parse运行时选择可能会给你你正在寻找的东西。

于 2013-09-30T15:02:06.533 回答
0

我发现这个网站显示了在命令行中使用模板。

$ phpdoc -d "./src" -t "./docs/api" --template="checkstyle"

所以如果你想导出到 xml 只需运行

$ phpdoc -d "./src" -t "./docs/api" --template="xml"

经测试。

于 2014-01-02T23:53:19.953 回答