Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
php docblock中以下内容的含义是什么:
#@+
Zend 框架代码中的一个示例:
/**#@+ * @const string Version constant numbers */ const VERSION_10 = '1.0'; const VERSION_11 = '1.1'; /**#@-*/
我假设它用于对相关项目进行分组,但无法确定。
此外,它的语法也很奇怪——从它生成文档时它是如何翻译的?
这是一个 docblock模板,因此模板之间的每个可记录元素(本示例中的每个 const)都具有相同的文档。