家园首页 Php4手册 我的相册 家园下载 个人文集 给我留言
我形我塑,网络相册,www.5x54.com 相册 相册 心情相册,少女相册 免费申请,我形我塑免费相册
 家园 个人文集   http://www.5x54.com
 


PHP取得随机字符或数字


作者:网上收集    点击: 读取中...次    发布日期:2007-09-13.10:38

[php]
<?php
function mac_rand( $length )  // 取得随机字符或数字
{
    $hash = '';
    $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';
    $max = strlen($chars) - 1;
    mt_srand( (double)microtime() * 1000000 );
    for( $i = 0; $i < $length; $i++ )
    {
        $hash .= $chars[mt_rand(0, $max)];
    }
    return $hash;
}

function mac_rand_mun( $length )  // 数字
{
    $hash = '';
    $chars = '0123456789';
    $max = strlen($chars) - 1;
    mt_srand( (double)microtime() * 1000000 );
    for( $i = 0; $i < $length; $i++ )
    {
        $hash .= $chars[mt_rand(0, $max)];
    }
    return $hash;
}

function mac_rand_char( $length )  // 英文字母
{
    $hash = '';
    $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    $max = strlen($chars) - 1;
    mt_srand( (double)microtime() * 1000000 );
    for( $i = 0; $i < $length; $i++ )
    {
        $hash .= $chars[mt_rand(0, $max)];
    }
    return $hash;
}
?>
[/php]

收藏此文章     打印此文章     编辑此文章    『关闭窗口』