' . $msg; } echo "\n"; } if ($exit) { die('

Exit

'); } } function genRandRaw($len) { $h = hash_hmac('sha1', rand(9999,9999999), 'dj*ccbcuiiurubrvnubcdluul', true); $a = str_split($h); //print_r($a); $a = array_slice($a, 0, $len); //print_r($a); $s = implode($a); //outputToFile('out', $s); return $s; } function outputToFile($outFname, $content, $mode, $append = false) { $out = fopen($outFname, ($append ? "a" : "w")); fwrite($out, $content); fclose($out); } ?>