Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $first_date = "2014-02-14 10:21:02";
  2. $second_date = "2014-02-14 08:21:02";
  3.  
  4. $first_time = strtotime($first_date);
  5. $second_time = strtotime($second_date);
  6.  
  7. $rand_time = rand($first_time, $second_time);
  8. $rand_date = date('Y-m-d g:i:s', $rand_time);
  9.  
  10. echo $rand_date;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement