使用 phpDocumentor 生成文档 作者: Chuwen 时间: 2021-06-04 分类: PHP 项目地址:https://github.com/phpDocumentor/phpDocumentor 下载地址:https://github.com/phpDocumentor/phpDocumentor/releases/tag/v3.0.0 1. 下载包 ```shell curl -O phpdoc "https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.0.0/phpDocumentor.phar" ``` 2. 移动到 `/usr/local/bin` ```shell mv phpdoc /usr/local/bin/phpdoc ``` 3. 给予执行权限(其实我也不是很确定要不要给) ```shell chmod +x /usr/local/bin/phpdoc ``` 4. 使用 > 首先进入项目路径 > `d` 代表要扫描的文件夹,这里代表这个项目 > `-t` 代表输出文档到哪个文件夹,这里是此项目的 `docs/api` 目录, > 也可以省略-t选项,默认输出到 `output` 文件夹。 ```shell cd /www/wwwroot/nowtime.cc phpdoc -d . -t docs/api ``` 标签: PHP, phpdoc