Home  >  Article  >  Backend Development  >  User-Agent string PHP a random string generation code

User-Agent string PHP a random string generation code

WBOY
WBOYOriginal
2016-07-29 08:42:582191browse

Copy code The code is as follows:


/*************
*@l - length of random string
*/
function generate_rand($l){
$c= "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
srand ((double)microtime()*1000000);
for($i=0; $i<$l; $i++) {
$rand.= $c[rand()%strlen($c)];
}
return $rand;
}


here This is an excerpt from a previously published article on this site. More tips are available for reference.
Collection of twenty-one practical and convenient PHP function codes

The above introduces the User-Agent string PHP random string generation code, including the content of User-Agent string. I hope it will be helpful to friends who are interested in PHP tutorials.

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