常量 const
在类里面定义常量用 const 关键字,而不是通常的 define() 函数。
<?php
/**
* @file
* Enables the user registration and login system.
*/
/**
* Maximum length of username text field.
* 用户名最大长度
*/
const USERNAME_MAX_LENGTH = 60;
/**
* Maximum length of user e-mail text field.
* 邮件地址最大长度
*/
const EMAIL_MAX_LENGTH = 254;
/**
* Only administrators can create user accounts.
* 只有管理员可以创建用户账户
*/
const USER_REGISTER_ADMINISTRATORS_ONLY = 'admin_only';
/**
* Visitors can create their own accounts.
* 访问者可以创建他们的账户
*/
const USER_REGISTER_VISITORS = 'visitors';
/**
* Visitors can create accounts, but they don't become active without
* administrative approval.
* 访问者可以创建,但需要管理员审核
*/
const USER_REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL = 'visitors_admin_approval';
?>