UCenter如何批量添加用户的php代码

来源:爱站网时间:2020-06-01编辑:网友分享
当我们需要批量添加用户的php代码的时候就会觉得一个个的添加太麻烦了,那么这时候我们就可以利用UCenter进行批量添加,接下来我们就一起去看看UCenter如何批量添加用户的php代码的内容吧。

当我们需要批量添加用户的php代码的时候就会觉得一个个的添加太麻烦了,那么这时候我们就可以利用UCenter进行批量添加,接下来我们就一起去看看UCenter如何批量添加用户的php代码的内容吧。

复制代码 代码如下:


//作者:www.tongqiong.com
//header("content-type:text/html; charset=utf-8");
//include_once("include/config.php");
//include_once("include/db_mysql.inc.php");
////include_once("include/n_public_function.php");
//$db = new DB_MYSQL("localhost","dbh218710","root","123");
include_once('./common.php');
include_once(S_ROOT.'./data/data_magic.php');
?>








global $_SGLOBAL;//定义全局变量
//注册的用户名
$rando_first_name = array(
'哪里购物',
'同穷论坛',
'台州妈妈',
'7788黑客'
);
//注册的密码
$rando_first_password = array(
'15032x',
'103716',
'114517',
'1ggg17'
);
/*为了确保用户名和密码能对上号,输出个字的数组长度进行比较
echo count($rando_first_name);
echo "______";
echo count($rando_first_password);
exit;
*/
for($i=0;$i $username = $rando_first_name[$i];
$pwd1 = $rando_first_password[$i];
$salt = substr(uniqid(rand()), -6);
$pwd = md5(md5($pwd1).$salt);
//查询是否已存在此用户名
$sql_username = "select username from uc_members where username='".$username."'";
$s_name = $_SGLOBAL['db']->fetch_array($_SGLOBAL['db']->query($sql_username));
//如果不存在重名的用户
if($username != $s_name['username']){//如果不存在
$_SGLOBAL['db']->query("INSERT INTO uc_members (username, password,regdate,salt)
VALUES ('$username', '$pwd','".mktime()."','$salt')");
$sql = "select uid from uc_members where username='".$username."'";
$_SGLOBAL['db']->query($sql);
$uuu = $_SGLOBAL['db']->fetch_array($_SGLOBAL['db']->query($sql));
echo $uuu['uid'];
$_SGLOBAL['db']->query("INSERT INTO uc_memberfields (uid)
VALUES ('".$uuu['uid']."')");
echo $username."success
";
}else{
echo "您要添加的用户已添加!";
}
}
//作者:www.tongqiong.com
?>

以上就是小编为大家介绍UCenter如何批量添加用户的php代码的内容,大家都了解清楚了吗?后续爱站技术频道小编会为大家继续扩充知识,大家一起收藏起来吧! 

上一篇:学习php array的笔记

下一篇:合格的PHP程序员必备技能

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载