生成sessionid和随机密码的例子
作者:bea
用这个可以来验证用户和生成随机密码--teaman <? //---------------------------------------------------- // Function GetSID() // // Parameters : $nSize number of caracters, default 24 // Return value : 24 caracters string // // Description : This function re
用这个可以来验证用户和生成随机密码--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);
?>
有用 |
无用
<?
//----------------------------------------------------
// 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);
?>
猜你喜欢
您可能感兴趣的文章:
- 使用字符串函数输出整数化的PHP版本号
- 树型结构列出指定目录里所有文件的PHP类
- 搜索和替换文件或目录的一个好类--很实用
- 非常好的php目录导航文件代码
- PHP4.04简明安装
- 利用 window_onload 实现select默认选择
- 将RTF格式的文件转成HTML并在网页中显示的代码
- 简单的用PHP编写的导航条程序
- 信用卡效验程序
- 用文本文件实现的动态实时发布新闻的程序
- 如何删除多级目录
- 用PHP实现多级树型菜单
- PHP4在Windows2000下的安装
- 模仿OSO的论坛(五)
- 基于mysql的论坛(2)
- 基于mysql的论坛(1)
- 基于mysql的论坛(4)
- 基于mysql的论坛(5)
- 基于mysql的论坛(6)