Created
February 16, 2013 17:51
-
-
Save Robbert/4967898 to your computer and use it in GitHub Desktop.
Revisions
-
Robbert created this gist
Feb 16, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ <?php /** * @see http://www.jwz.org/doc/mid.html */ function generateMessageID() { return sprintf( "<%s.%s@%s>", base_convert(microtime(), 10, 36), base_convert(bin2hex(openssl_random_pseudo_bytes(8)), 16, 36), $_SERVER['SERVER_NAME'] ); }