PHP를 사용하여 임의의 문자열을 생성하려면 코드는 다음과 같습니다-
예시
<?php $res = substr(md5(mt_rand()), 0,5); echo "Displaying random string...\n"; echo $res; ?>
출력
이것은 다음과 같은 출력을 생성합니다-
Displaying random string... 1c856
예시
이제 다른 예를 살펴보겠습니다 -
<?php $res = substr(md5(mt_rand()), 0,5); echo "Displaying random string...\n"; echo $res; echo "\nDisplaying another random string...\n"; $res2 = bin2hex(random_bytes(5)); echo $res2; ?>
출력
이것은 다음과 같은 출력을 생성합니다-
Displaying random string... a3541 Displaying another random string... 335b83d9e9