如何记录PHP常量:
define('SOME_CONSTANT', 'constant value');
用Doxygen?
解决方法:
只需在常量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);
?>