Skip to content

Instantly share code, notes, and snippets.

@RakibSiddiquee
Created September 8, 2018 13:00
Show Gist options
  • Save RakibSiddiquee/7f09c0bc7c32f82640dd09fb9d5e69dc to your computer and use it in GitHub Desktop.
Save RakibSiddiquee/7f09c0bc7c32f82640dd09fb9d5e69dc to your computer and use it in GitHub Desktop.
PHP unique number generate function
<?php
function uniqueNumber(){
$unqNo = strtotime(date("Ymdhis"))*999;
return $unqNo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment