我们必须如何记录(使用phpDocumentor )用PHP 中的define() 定义的常量?
我在文档中一无所获,但在 sample2.php 中找到了以下示例(我没有看到它的用途):
/**#@+
* Constants
*/
/**
* first constant
*/
define('testing', 6);
/**
* second constant
*/
define('anotherconstant', strlen('hello'));
任何人都可以告诉我用 phpDocumentor 在 PHP 中记录常量的最佳方法是什么?