Contact: aviboots(AT)netvision.net.il
38,480 questions
50,145 answers
573 users
function make_seed() { list($sec_min, $sec) = explode(' ', microtime()); return (float) $sec + ((float) $sec_min * 100000); } mt_srand(make_seed()); $n = mt_rand(); echo $n; /* run: 1322009612 */