불필요한 주석 제거

This commit is contained in:
kkigomi
2023-08-31 21:17:40 +09:00
parent 4b9b1af01e
commit 8cd1df0f43
4 changed files with 1 additions and 4 deletions

View File

@ -4157,7 +4157,7 @@ function get_random_token_string($length=6)
}
$characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
$output = substr(str_shuffle($characters), 0, $length); // jihan001 님 제안코드로 수정
$output = substr(str_shuffle($characters), 0, $length);
return bin2hex($output);
}