使用PHP批量生成随机用户名

yipeiwu_com5年前PHP代码库
程序一:负责从字典中随机提取数据,写入一个新文件。(1.php)
复制代码 代码如下:

<?php
/* 从字典文件中提取随机值 */

$file1 = "./Words.dic";
$file2 = "./common_pass_mini.dic";
$file3 = "./Sys_Month_Date.Dic";
$rfile = "./5.dic";
$n = 2000;

//提取字典
$basef = file($file1);
$extf = file($file2);
$extf2 = file($file3);
$bf_sum = (count($basef)-1);
$ef_sum = (count($extf)-1);
$ef2_sum =(count($extf2)-1);

//获取随机用户名
for ($i=0; $i<$n; $i++)
{
$bn = crand(0, $bf_sum);
$en = crand(0, $ef_sum);
$en2 = crand(0, $ef2_sum);
$name = $basef[$bn]."_".$extf[$en];
$name = str_replace("/r/n", "", $name);
$all_name[] = $name;
}

//写入文件
$result = implode("/r/n", $all_name);
$fp = fopen($rfile, "a+") or die('Open $rfile failed');
if (fwrite($fp, $result)) {
echo 'Write user succeed!';
} else {
echo 'Write user failed';
}

//生成随机数字函数
function crand($start, $end)
{
return mt_rand($start, $end);
}
?>

程序二:负责把上面生成的数个文件的结果合并。(2.php)
复制代码 代码如下:

<?php
/* 合并所有生成结果 jb51.net*/

$result_file = "./result.dic";

$fp = fopen($result_file, "a+") or die("Open $result_file failed");

//合并 1.dic ~ 5.dic
for ($i=1; $i<=5; $i++)
{
$cur_file = file_get_contents($i.".dic");
fwrite($fp, $cur_file);
}

//合并 10.dic ~ 11.dic
for ($i=10; $i<=11; $i++)
{
$cur_file = file_get_contents($i.".dic");
fwrite($fp, $cur_file);
}
fclose($fp);
echo 'Write Succeed';

?>

程序三:负责过滤重复值和不属于 6~16 之间的值并且生成最终结果(3.php)
复制代码 代码如下:

<?php
/* 生成最终结果 */

$file = "./result.dic";
$target = "./target.dic";

//去掉重复值
$files = file($file);
$files = array_unique($files);

//判断值是不是大于6位小于16位
$sum = count($files);
for ($i=0; $i<$sum; $i++)
{
if (strlen($files[$i])>=6 && strlen($files[$i])<=16) {
  $rs[] = $files[$i];
} else {
  continue;
}
}

//写入目标文件
$result = implode("", $rs);
$fp = fopen($target, "a+") or die("Open $target failed");
fwrite($fp, $result);
echo 'Write succeed';
?>

基本搞定手工,上面生成了 2.7W个随机用户名,呵呵,保证够你使用。

相关文章

php mssql 分页SQL语句优化 持续影响

复制代码 代码如下:<?php /** * @Filename :page.sql.class.php * @CreatTime :2009-01-06 * @Descrition...

静态html文件执行php语句的方法(推荐)

HTM文件中的PHP语句不会被执行,如何在HTML文件中运行php代码? html文件执行php语句的方法: 1,修改httpd.conf,命令Apache把HTML当作PHP, 需要修...

PHP中strtr字符串替换用法详解

本文实例讲述了PHP中strtr字符串替换用法。分享给大家供大家参考。具体分析如下: strtr(string,from,to)或者strtr(string,array) 首先针对str...

php获取Google机器人访问足迹的方法

本文实例讲述了php获取Google机器人访问足迹的方法。分享给大家供大家参考。具体如下: <?php $email = "test@test.com"; if(ere...

PHP return语句另类用法不止是在函数中

分享下PHP return语句的另一个作用,在bbPress的代码中看到的一个奇葩使用方法。 一直以为,return只能出现在函数中,直到看了bbPress的代码: <?...