Answers for "Which of the following variable is used to generate random numbers using 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
0

php random number

echo (rand());
echo(rand(10, 100));//random number with range
Posted by: Guest on June-11-2021

Code answers related to "Which of the following variable is used to generate random numbers using PHP?"

Browse Popular Code Answers by Language