UCenter 批量添加用户的php代码

时间:2024-05-11 09:25:09 


<?
//作者: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');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
<?
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<count($rando_first_name);$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<br/>";
}else{
echo "您要添加的用户已添加!";
}
}
//作者:www.tongqiong.com
?>
</body>
</html>
标签:UCenter,批量添加用户
0
投稿

猜你喜欢

  • 使用Javascript监控前端相关数据的代码

    2024-04-17 09:43:02
  • vue $mount 和 el的区别说明

    2024-04-28 09:20:24
  • 关于Tensorflow中的tf.train.batch函数的使用

    2023-11-04 19:49:54
  • Python环境搭建过程从安装到Hello World

    2023-03-03 07:41:36
  • 用Pygal绘制直方图代码示例

    2023-12-15 22:41:01
  • ASP+JAVAScript:复杂表单的动态生成与验证

    2007-10-06 21:51:00
  • pandas 实现 in 和 not in 的用法及使用心得

    2021-10-23 12:25:07
  • python切片的步进、添加、连接简单操作示例

    2022-09-10 01:26:34
  • php实现简单的权限管理的示例代码

    2024-05-05 09:18:37
  • Django基于ORM操作数据库的方法详解

    2024-01-28 18:53:52
  • SQLserver 实现分组统计查询(按月、小时分组)

    2024-01-24 12:52:15
  • DIV+CSS设计时容易犯的一些错误

    2007-11-13 12:42:00
  • Python进程间通信之共享内存详解

    2022-01-06 05:47:10
  • Python面向对象编程之类的继承

    2021-10-27 23:46:39
  • python实现可下载音乐的音乐播放器

    2023-04-26 09:01:52
  • python实现雨滴下落到地面效果

    2021-10-04 03:58:32
  • 如何在sae中设置django,让sae的工作环境跟本地python环境一致

    2022-03-09 22:04:54
  • Golang学习笔记(四):array、slice、map

    2024-04-30 10:02:32
  • python引入requests报错could not be resolved解决方案

    2022-08-28 08:24:45
  • 用户凭什么跟你注册?

    2011-06-10 13:16:00
  • asp之家 网络编程 m.aspxhome.com