Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[发布] 批量加会员小插件 (完美兼容)

[复制链接]
sdsfsd 发表于 2012-11-5 10:23:29 | 显示全部楼层 |阅读模式
<?php
/*
*作者:飞翔
*QQ:304569324
*/
require('config.php');
require('cls_mysql.php');
require('cls_json.php');
$json = new JSON();
$db = new mysql($db_host, $db_user, $db_pass, $db_name);
$file = file_get_contents("user.txt");
//取出一条
$file_r = explode(",",$file);
foreach((array)$file_r as $v)
{
if(empty($v))
{
  $re = array("start"=>'2',"username"=>'');
  die($json -> encode($re));
  break;
}

$sql = "SELECT * FROM `pre_common_member` where username = '$v' LIMIT 1";
$res = $db -> getRow($sql);

if(!$res)
{
  //存储
  $file = @str_replace($v.",","",$file);
  @file_put_contents("user.txt",$file);
  
  $pass = substr($v,-6);
  $mail = $pass.rand(1000,2000)."@126.com";
  
  $re = array("start"=>'1',"username"=>$v,"pass"=>$pass,"email"=>$mail);
  die($json -> encode($re));
  
  
  break;
}
else
{
  //存储
  if($v == $file)
  {
   $file = str_replace($v,"",$file);
  }
  else
  {
   $file = str_replace($v.",","",$file);
  }
  
  
  @file_put_contents("user.txt",$file);
}
}

$re = array("start"=>'3',"username"=>'');
die($json -> encode($re));
?>
要命的酒鬼 发表于 2012-11-5 11:16:02 | 显示全部楼层
代码都木用,你就把user.txt放出来就行啦
回复

使用道具 举报

shaloncs 发表于 2012-11-5 13:02:37 | 显示全部楼层
这是  ...  没有 教一下 怎么搞的啊
回复

使用道具 举报

1314学习网 发表于 2012-11-5 20:24:32 | 显示全部楼层
代码没啥用。。。
回复

使用道具 举报

heyanan1106 发表于 2012-11-5 20:33:15 | 显示全部楼层
怎么弄的啊??????
回复

使用道具 举报

GT雨燕8秒41 发表于 2012-11-10 23:58:39 | 显示全部楼层
很不错哦,谢谢了啊
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-16 21:31 , Processed in 0.032357 second(s), 6 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表