Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 19, 2012 03:09
Show Gist options
  • Save MilkZoft/1637437 to your computer and use it in GitHub Desktop.
Save MilkZoft/1637437 to your computer and use it in GitHub Desktop.
codejobs - Generates a random code (Hash) - PHP
<?php
function code($max = 10, $uppercase = TRUE) {
return ($uppercase) ? strtoupper(substr(md5(date("Y-m-d H:i:s", time())), 0, $max)) : substr(md5(date("Y-m-d H:i:s", time())), 0, $max);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment