如何记录PHP常量:
define('SOME_CONSTANT', 'constant value');
与Doxygen?
答案 0 :(得分:3)
只需在常量define()
函数调用或const
关键字上方添加文档块,如下所示:
<?php
/**
* Short Break Adventure Trip Sub Type Id
*/
const TRIP_SBA = 1;
/**
* Small Group Adventure Trip Sub Type Id
*/
define('TRIP_SGA', 2);
?>
答案 1 :(得分:0)
不确定它是否正在查找,但您可以使用“定义宏”
\def <name>
类似的东西:
/*!
\def SOME_CONSTANT
some constant documentation
*/