2011-02-14 69 views

回答

6

phpDocumentor的不承認或利用@const標籤。 phpDocumentor在代碼中看到「define」關鍵字時就會識別出一個常量。其輸出模板將顯示輸出文檔中的所有常量,列爲常量。常數的docblock中唯一需要的是描述,儘管如果你覺得你需要它們,許多其他的「標準」標籤都是允許的[1]。

[1] - http://manual.phpdoc.org/HTMLSmartyConverter/HandS/phpDocumentor/tutorial_elements.pkg.html#procedural.define

1

使用@const

/** 
    * @const FOO Bar 
    */ 
define('FOO', 'Bar'); 

Documentation(對不起,唯一的文檔我能看到的是德語。)

+0

我確實遇到過這種情況,但是,我無法在其他任何地方找到它,NetBeans也沒有向其顯示自動完成提示。 – Matty 2011-02-14 18:28:28

相關問題