PHP ランダム文字列生成


ランダム文字列生成 (a~zの中で生成) 32桁 for文の数値変更すれば桁数変更できる

$str = chr(mt_rand(97, 122));
        for($i = 1; $i < 32; $i++){
            $str .= chr(mt_rand(97, 122));
        }

ランダム文字列生成 (A~Zの中で生成)

$str = chr(mt_rand(65, 90));
        for($i = 1; $i < 32; $i++){
            $str .= chr(mt_rand(65, 90));
        }

乱数生成

rand()
rand(5,8) //5~8の間で生成