PHP生成随机字符串包括大小写字母

it2022-05-05  103

PHP生成随机字符串包括大小写字母,这里介绍两种方法:

第一种:利用字符串函数操作

<?php/** *@blog <www.phpddt.com> */function createRandomStr($length){ $str ='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';//62个字符 $strlen =62;while($length > $strlen){ $str .= $str; $strlen +=62;} $str = str_shuffle($str);return substr($str,0,$length);} echo createRandomStr(10);

第二种:利用数组和字符转换的思想:

<?php/** *@blog <www.phpddt.com> */function createRandomStr($length){ $str = array_merge(range(0,9),range('a','z'),range('A','Z')); shuffle($str); $str = implode('',array_slice($str,0,$length));return $str;} echo createRandomStr(10);

经过循环1000次测试,第一种效率比较高(第一种计算一千次大概0.02,第二种计算一千次大概0.06s)!

转载于:https://www.cnblogs.com/zsmynl/p/3538624.html

相关资源:PHP随机字符串生成代码(包括大小写字母)

最新回复(0)