Skip to content

Instantly share code, notes, and snippets.

@cryptixcoder
Created September 8, 2015 20:46
Show Gist options
  • Save cryptixcoder/4428af58e1c2b2d1d58c to your computer and use it in GitHub Desktop.
Save cryptixcoder/4428af58e1c2b2d1d58c to your computer and use it in GitHub Desktop.
Generate Order Number
<?php
function gen_order_num(){
return substr(md5(microtime()), rand(0,26),3).time();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment