Answers for "how do you print the rand() value in php"

PHP
0

randstring php

<?php 
    $random = substr(md5(mt_rand()), 0, 7);
    echo $random;
?>
Posted by: Guest on April-21-2020
2

php rand int

random_int ( int $min , int $max );
Posted by: Guest on May-17-2020

Code answers related to "how do you print the rand() value in php"

Browse Popular Code Answers by Language