当前位置:Gxlcms > PHP教程 > 用PHP生成随机数的函数

用PHP生成随机数的函数

时间:2021-07-01 10:21:17 帮助过:11人阅读

  1. function randomkeys($length)
  2. {
  3. $pattern = ‘1234567890abcdefghijklmnopqrstuvwxyz
  4. ABCDEFGHIJKLOMNOPQRSTUVWXYZ,./&l
  5. t;>?;#:@~[]{}-_=+)(*&^%___FCKpd___0pound;”!’; //字符池
  6. for($i=0;$i<$length;$i++)
  7. {
  8. $key .= $pattern{mt_rand(0,35)}; //生成php随机数
  9. }
  10. return $key;
  11. }
  12. echo randomkeys(8);这个php随机函数能生成XC*=z~7L这样的字符串,够随机!现在介绍另一种用PHP生成随机数的方法:利用chr()函数,省去创建字符池的步骤。 function randomkeys($length)
  13. {
  14. $output=”;
  15. for ($a = 0; $a < $length; $a++) {
  16. $output .= chr(mt_rand(33, 126)); //生成php随机数
  17. }
  18. return $output;
  19. }
  20. echo randomkeys(8);
  21. ?>
注解: 在第二个php随机函数里,先用mt_rand()生成一个介于33到126之间的php随机数,然后用chr()函数转化成字符。 查看ascii码表就会发现,33到126代表的正是第一个函数中字符池里的所有字符。第二个函数和第一个函数功能相同,而且更简洁。

人气教程排行