大雀软件园

首页 软件下载 安卓市场 苹果市场 电脑游戏 安卓游戏 文章资讯 驱动下载
技术开发 网页设计 图形图象 数据库 网络媒体 网络安全 站长CLUB 操作系统 媒体动画 安卓相关
当前位置: 首页 -> 技术开发 -> PHP专区 -> 生成sessionid和随机密码的例子

生成sessionid和随机密码的例子

时间: 2021-07-31 作者:daque

用这个不妨来考证用户和天生随机暗号--teaman <?         //----------------------------------------------------         // function getsid()         //         // parameters : $nsize number of caracters, default 24         // return value : 24 caracters string         //         // description : this function returns a random string         // of 24 caracters that can be used to identify users         // on your web site in a more secure way. you can also          // use this function to generate passwords.         //----------------------------------------------------         function getsid ($nsize=24) {                          // randomize             mt_srand ((double) microtime() * 1000000);             for ($i=1; $i<=$nsize; $i++) {                                  // if you wish to add numbers in your string,                  // uncomment the two lines that are commented                 // in the if statement                 $nrandom = mt_rand(1,30);                 if ($nrandom <= 10) {                     // uppercase letters                     $sessionid .= chr(mt_rand(65,90));             //    } elseif ($nrandom <= 20) {             //        $sessionid .= mt_rand(0,9);                 } else {                     // lowercase letters                     $sessionid .= chr(mt_rand(97,122));                 }                              }                     return $sessionid;         }         // test the function          echo getsid(16);     ?> 

热门阅览

最新排行

Copyright © 2019-2021 大雀软件园(www.daque.cn) All Rights Reserved.