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