程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> ApiGen4.1 windows安裝教程,apigen4.1教程

ApiGen4.1 windows安裝教程,apigen4.1教程

編輯:關於PHP編程

ApiGen4.1 windows安裝教程,apigen4.1教程


 

一. ApiGen4.1版本介紹

1.ApiGen介紹

ApiGen是自動生成PHP項目的閱讀文檔工具。 用於從PHP源代碼創建專業的API文檔,類似於phpDocumentor/phpDoc。

ApiGen4.1需要PHP 5.4+的版本支持

2.ApiGen官網地址

(1).OSCHINA地址www.oschina.net/p/apigen

(2).官網地址www.apigen.org

(3).github地址https://github.com/apigen/apigen#options

3.知名案例:

4.ApiGen風格樣式

官方推薦有默認和Twitter Bootstrap兩套風格樣式。

  • ApiGen官方默認風格
  •  ApiGen官方默認風格
  • ApiGen官方Bootstrap風格
  •  Bootstrap

二.ApiGen windows安裝步驟

1. 下載ApiGen。

官網地址http://www.apigen.org/

官網下載地址http://apigen.org/apigen.phar

2.編寫windows可執行bat文件

打開記事本寫入以下相關信息,並另存為apigen.bat文件。

> @(PHP.exe執行文件地址) "%~dp0apigen.phar" %*

 

例如

@D:\xampp\php\php.exe "%~dp0apigen.phar" %*

 

另存為apigen.bat

3.將apigen.phar及apigen.bat文件復制或移動到環境變量PATH任一目錄中。

windows7 對應目錄為 C:\Windows\System32

4.在命令行中執行apigen出現版本及相關命令信息則證明安裝成功。

c:\>apigen
ApiGen version 4.1.0

Usage:
 command [options] [arguments]

Options:
 --help (-h)    Display this help message.
 --quiet (-q)   Do not output any message.
 --version (-V) Display this application version.

Available commands:
 generate      Generate API documentation
 help          Displays help for a command
 list          Lists commands
 self-update   Updates apigen.phar to the latest available version
 selfupdate    Updates apigen.phar to the latest available version

 

5.執行生成apigen文檔命令。

apigen generate --source "php項目地址" --destination "文檔導出地址"

 

完整示例

apigen generate --source "D:\web\ruionline" --destination "D:\web\ruionline\doc"

 

導出生成過程

 

最終生成目錄結構 

apigen目錄結構

web展示效果

apigen web展示效果

三.apigen命令參數詳細說明

--source <path>需要編譯成文檔的 Project 目錄, --source <path> 同時可以指定多個
--destination <path>  編譯後存放的目錄路徑
--title <Name>  文檔首頁的標題
--exclude <path> 排除的目錄(如 'views/*' 表示視圖目錄下的不生成文檔)

Options:
 --source (-s)        Dirs or files documentation is generated for. (multiple va
lues allowed)
 --destination (-d)   Target dir for documentation.
 --access-levels      Access levels of included method and properties. (default:
 ["public","protected"]) (multiple values allowed)
 --annotation-groups  Generate page with elements with specific annotation.
 --base-url           Base url used for sitemap (useful for public doc).
 --config             Custom path to apigen.neon config file. (default: "E:\\ide
/apigen.neon")
 --google-cse-id      Custom google search engine id (for search box).
 --google-analytics   Google Analytics tracking code.
 --debug              Turn on debug mode.
 --deprecated         Generate documentation for elements marked as @deprecated
 --download           Add link to ZIP archive of documentation.
 --extensions         Scanned file extensions. (default: ["php"]) (multiple valu
es allowed)
 --exclude            Directories and files matching this mask will not be parse
d (e.g. */tests/*). (multiple values allowed)
 --groups             The way elements are grouped in menu. (default: "auto")
 --charset            Charset of scanned files. (multiple values allowed)
 --main               Elements with this name prefix will be first in tree.
 --internal           Include elements marked as @internal.
 --php                Generate documentation for PHP internal classes.
 --skip-doc-path      Files matching this mask will be included in class tree, b
ut will not create a link to their documentation. (multiple values allowed)
 --no-source-code     Do not generate highlighted source code for elements.
 --template-theme     ApiGen template theme name. (default: "default")
 --template-config    Your own template config, has higher priority templateThem
e.
 --title              Title of generated documentation.
 --todo               Generate documentation for elements marked as @todo.
 --tree               Generate tree view of classes, interfaces, traits and exce
ptions.
 --help (-h)          Display this help message.
 --quiet (-q)         Do not output any message.
 --version (-V)       Display this application version.

 

四.apigen支持php注釋詳解

支持官方PSR-5標准

1.Custom

@deprecated
package
subpackage
copyright
license
author
version
since
see
uses
internal
todo
Standard

 

2.param

return
throws
{@inheritdoc}
Magic methods and properties

 

3.property

property-read
property-write
method

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved