7万
861
32万
论坛元老
本文实例讲述了php使用指定字符列表生成随机字符串的方法。分享给大家供大家参考。具体如下:
<?php function randomString($len) { srand(date("s")); $possible="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890!@#$%^&*()"; $str=""; while(strlen($str)<$len) { $str.=substr($possible,(rand()%(strlen($possible))),1); } return($str); } ?>
希望本文所述对大家的php程序设计有所帮助。
使用道具 举报
0
1万
中级会员
5
2万
69
注册会员
1
182
6
247
16
376
307
55
7
398
本版积分规则 发表回复 回帖后跳转到最后一页
手机版|小黑屋|网站地图|源码论坛 ( 海外版 )
GMT+8, 2024-11-25 21:49 , Processed in 0.067015 second(s), 22 queries .
Powered by Discuz! X3.4
Copyright © 2001-2020, Tencent Cloud.