PHP注释块中的#@ +和#@ - 是什么意思?

时间:2016-01-10 13:00:19

标签: php documentation

我见过几个PHP文件,其中在doc块的开头有一些特殊字符。 它以/**#@+ some doc-text */开头,以/**#@-*/结尾。

这些符号是什么意思?

我发现这似乎在各种PHP框架(Zend,phpseclib,Magento)中使用,但无法找到解释。

示例:

/**#@+
 * Constants for keys of data array. Identical to the name of the getter in snake case
 */
const ID = 'id';
const CUSTOMER_ID = 'customer_id';
const REGION = 'region';
const REGION_ID = 'region_id';
const COUNTRY_ID = 'country_id';
const STREET = 'street';
const COMPANY = 'company';
const TELEPHONE = 'telephone';
const FAX = 'fax';
const POSTCODE = 'postcode';
const CITY = 'city';
const FIRSTNAME = 'firstname';
const LASTNAME = 'lastname';
const MIDDLENAME = 'middlename';
const PREFIX = 'prefix';
const SUFFIX = 'suffix';
const VAT_ID = 'vat_id';
const DEFAULT_BILLING = 'default_billing';
const DEFAULT_SHIPPING = 'default_shipping';
/**#@-*/

1 个答案:

答案 0 :(得分:3)