Uc user checkname
出自Discuz! 技术文库
uc_user_checkname
- integer uc_user_checkname(string username)
目录 |
描述
本接口函数用于检查用户输入的用户名的合法性。
参数
参数名 | 类型 | 是否必需 | 说明 | 备注 |
username | string | 是 | 用户名 |
范例
$ucresult = uc_user_checkname($_GET['email']); if($ucresult > 0) { echo '用户名可用'; } elseif($ucresult == -1) { echo '用户名不合法'; } elseif($ucresult == -2) { echo '包含要允许注册的词语'; } elseif($ucresult == -3) { echo '用户名已经存在'; }
返回值
返回值类型 | 说明 | 备注 |
integer | 1:成功 -1:用户名不合法 -2:包含要允许注册的词语 -3:用户名已经存在 |