Advertisement
vanchelo

Untitled

Oct 20th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function KeyGen($salt) {
  2.     $salt = !empty($salt) ? trim($salt) : $modx->getOption('discount_salt',null,'spacosmetic');
  3.         $key = md5(mktime() + $salt);
  4.         $new_key = implode('-',str_split(substr($key,0,16),4));
  5.         return strtoupper($new_key);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement