battles/magic/mfunctions.php

8 lines
128 B
PHP
Raw Normal View History

2018-01-28 16:40:49 +00:00
<?php
function make_seed() {
list($usec, $sec) = explode(' ', microtime());
return (float)$sec+((float)$usec*100000);
}
?>