Home >Backend Development >PHP Tutorial >PHP randomly generates n-digit string_PHP tutorial

PHP randomly generates n-digit string_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 10:35:431045browse

//随机生成n位字符串

function rand_str($num){

$str = "qwertyuioplkjhgfdsazxcvbnmQAZWSXEDCRFVTGBYHNUJMIKOLP1234567890";

$str_len = strlen($str)-1;

//echo $str_len;

$s='';

for ($i = 0; $i

$s.=$str[rand(0, $str_len)];

}

echo $s;

}

rand_str(32);

?>

// Randomly generate n-digit string

function rand_str($num){

$str_len = strlen($str)-1; //echo $str_len; $s=''; for ($i = 0; $i $s.=$str[rand(0, $str_len)];
} echo $s;
} rand_str(32); ?>
http://www.bkjia.com/PHPjc/742405.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/742405.htmlTechArticle//Randomly generate n-digit string functionrand_str($num){ $str = "qwertyuioplkjhgfdsazxcvbnmQAZWSXEDCRFVTGBYHNUJMIKOLP1234567890"; $str_len = strlen($str)-1; //echo $str_len; $s=''; for(...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn