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の間で生成
Author And Source
この問題について(PHP ランダム文字列生成), 我々は、より多くの情報をここで見つけました https://qiita.com/date_sk/items/e0a43fb547bfccbf4d25著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .