コードをコピー コードは次のとおりです:
function randStr($len)
{
$chars='ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz'; //
からパスワードを構築する文字$string= ''; ;$len> ;=1;$len--)
{
$position=rand()%strlen($chars);
$string.=substr($chars,$position,1);
return $string ;
}
echo randStr(10)."
";
http://www.bkjia.com/PHPjc/320028.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/320028.html技術記事次のようにコードをコピーします: function randStr($len) { $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz'; // $string='' からパスワードを構築する文字