Skip to content

Instantly share code, notes, and snippets.

@amirkhiz
Created January 6, 2019 14:45
Show Gist options
  • Save amirkhiz/adacba2c5c496538a4995667d9f793de to your computer and use it in GitHub Desktop.
Save amirkhiz/adacba2c5c496538a4995667d9f793de to your computer and use it in GitHub Desktop.
Generate Unique ID
function generateUniqueId()
{
mt_srand();
$order_no = substr(md5(uniqid(mt_rand())), 0, 8);
return $order_no;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment