1~9、a~z、A~Z の XXX 乱数を生成する方法
/**
* 乱数を生成します
* @param int $length ?degree
* @return string
*/
function randomkey($length) {
$hash = '';
$chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890';
$max = strlen($chars) - 1;
for ($i $hash .= $chars[mt_rand(0, $max)];
}
$hash を返す
}