php make mt_srand seed


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function makeSeed()
  2. {
  3. list( $usec, $sec ) = explode( ' ', microtime() );
  4. return (float) $sec + ( (float) $usec * 100000 );
  5. }

Report this snippet


Comments


You need to login to view comments.