PnP設定ツール
ご注意
ダウンロードの際、ユーザ認証が必要となります。
ユーザー名にはライセンス番号を、パスワードにはご購入時にご登録いただきましたメールアドレスを入力してください。
認証画面
function getOnetimeKey($len)
{
$chars = '01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz%+!$#@()=|^~-+?&';
$string = null;
if ( is_numeric($len) && strcmp($len, 0) != 0){
$string = "";
for ($j = 0; $j < $len; $j++){
$pos = rand(0, strlen($chars)-1);
$string .= $chars{$pos};
}
}
return $string . time();
}
?>