2017-01-03 57 views
1

我使用phpDocumentor 2來描述幾種方法。我想鏈接到本地​​函數的官方PHP文檔。我可以寫這樣的事:如何鏈接到phpDocumentor 2中的官方PHP文檔?

/** 
* @see http://php.net/manual/en/function.ucfirst.php ucfirst 
*/ 

這些不工作:

/** 
* @see ucfirst 
* @see \ucfirst 
*/ 

有沒有更好的辦法?我正在尋找這樣的東西:

/** 
* @the-official-documentation-for ucfirst 
*/ 
+0

我沒有明白你的意思嗎?你究竟想要完成什麼? –

+1

是的,你可以寫。 – 2017-01-03 04:29:51

+0

@Anant我更新了問題。 – Michas

回答

0

您在文檔中遇到了一些與您的語法有關的問題。您應該使用@link而不是@see

/** 
* @see http://php.net/manual/en/function.ucfirst.php ucfirst 
*/ 

更改文檔代碼

/** 
* @link http://php.net/manual/en/function.ucfirst.php ucfirst 
*/ 

我已經測試過,並正在努力在我的編輯器即phpStorm

注意:它只能在functionsclass名。你不能在評論中使用它。

+0

我在phpDocumentor 2中看不到'@ see'和'@ link'的任何區別。在PSR-5草稿中,不贊成使用「@ link」。 – Michas