Advertisement
dinnerdog

Untitled

Mar 5th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php //Cheers Rommel
  2.  
  3. /* Verify that following value is higher than 2147483647(32bit):
  4. echo PHP_INT_MAX;
  5. */
  6.  
  7. $steamID = '76561197996545192';
  8. $temp = '';
  9.  
  10. for ($i = 0; $i < 8; $i++) {
  11. $temp .= chr($steamID & 0xFF);
  12. $steamID >>= 8;
  13. }
  14.  
  15. $return = md5('BE' . $temp);
  16.  
  17. echo $return;
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement