Answers for "random number php"

PHP
12

random number generator in php

you can use rand() function for that in php.
Example:
Generate random numbers between 1 to 50
<?php
  echo rand(1,50);
?>
Posted by: Guest on July-11-2020
7

php random number

// $min and $max are optional
rand($min,$max);
Posted by: Guest on April-14-2020
2

php random integer

echo random_int(0,50);
Posted by: Guest on October-03-2020
6

php random string

function rand_str() {
    $characters = '0123456789-=+{}[]:;@#~.?/&gt;,&lt;|\!"£$%^&amp;*()abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $randomstr = '';
    for ($i = 0; $i < random_int(50, 100); $i++) {
      $randomstr .= $characters[rand(0, strlen($characters) - 1)];
    }
    return $randomstr;
  }
Posted by: Guest on October-03-2020
5

php random number generator

<?php
  echo rand(1,50);
?>
Posted by: Guest on July-26-2020
2

php random number

rand(0,10);
or
random_int(0,10)
Posted by: Guest on October-03-2020

Browse Popular Code Answers by Language