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

{

$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);

}

?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值