php random datetime code example
Example 1: 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);
?>
Example 2: php script to generate random date
//Generate a timestamp using mt_rand.
$timestamp = mt_rand(1, time());
//Format that timestamp into a readable date string.
$randomDate = date("d M Y", $timestamp);
//Print it out.
echo $randomDate;