|
在Discuz!中,系统默认的用户名长度是 3-15字节,但有一些网站可能会因为各种原因需要将用户名长度的限制做一些修改。所以结合之前的一些经验,完成了修改 注册用户名长度 的办法详细如下:
一 修改逻辑判断类源码
1 修改注册类和用户名检查提示
打开 /source/class/class_member.php 文件
找到
- [mw_shl_code=php,true]$usernamelen = dstrlen($username);
- if($usernamelen < 3) {
- showmessage('profile_username_tooshort');
- } elseif($usernamelen > 15) {
- showmessage('profile_username_toolong');
- }[/mw_shl_code]
复制代码
2 打开 /source/module/forum/forum_ajax.php 文件
找到
- [mw_shl_code=php,true]if($usernamelen < 3) {
- showmessage('profile_username_tooshort', '', array(), array('handle' => false));
- } elseif($usernamelen > 15) {
- showmessage('profile_username_toolong', '', array(), array('handle' => false));
- }[/mw_shl_code]
复制代码
3 打开文件 uc_client/model/user.php
找到
- [mw_shl_code=php,true]function check_username($username) {
- $guestexp = '\xA1\xA1|\xAC\xA3|^Guest|^\xD3\xCE\xBF\xCD|\xB9\x43\xAB\xC8';
- $len = $this->dstrlen($username);
- if($len > 15 || $len < 3 || preg_match("/\s+|^c:\\con\\con|[%,\*"\s\<\>\&]|$guestexp/is", $username)) {
- return FALSE;
- } else {
- return TRUE;
- }
- }[/mw_shl_code]
复制代码
4 打开文件 static/js/register.js
找到
- [mw_shl_code=php,true]if(unlen < 3 || unlen > 15) {
- errormessage(id, unlen < 3 ? '用户名不得小于 3 个字符' : '用户名不得超过 15 个字符');
- return;
- }[/mw_shl_code]
复制代码
把上面逻辑判断中的数字3或者15改成你需要的数字即可。
这里需要注意一点:
中文一个字是占两个字符的,所以如果需要用户名是含中文的,就要设计好字符个数了。
二 修改语言包提示语句
1 打开 /source/language/lang_message.php 文件
找到
'profile_username_toolong' => '抱歉,您的用户名超过 15 个字符,请输入一个较短的用户名',
把上面的15改成你需要的数字
2 打开 /source/language/mobile/lang_template.php 文件
找到
'reg_username' => '用户名必须为大于3位小于15位',
'registerinputtip' => '用户名:3-15位',
把上面的数字都改成你需要的数字
到这里就全部改完了。 |
|