当前位置:首页 > PHP教程 > php应用 > 列表

php使用指定字符列表生成随机字符串的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-22 21:00:22 浏览: 评论:0 

这篇文章主要介绍了php使用指定字符列表生成随机字符串的方法,涉及php中rand及substr等函数操作字符串的相关技巧,非常简单实用,需要的朋友可以参考下,本文实例讲述了php使用指定字符列表生成随机字符串的方法,分享给大家供大家参考,具体如下:

  1. <?php 
  2. function randomString($len) { 
  3.   srand(date("s")); 
  4.   $possible="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890!@#$%^&*()"
  5.   $str=""
  6.   while(strlen($str)<$len) { 
  7.    $str.=substr($possible,(rand()%(strlen($possible))),1); 
  8.   } 
  9.   return($str); 
  10. ?>

Tags: php生成随机字符串

分享到: