Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sohelrana820/644c99ed6276cb593daaff40989e31d9 to your computer and use it in GitHub Desktop.
Save sohelrana820/644c99ed6276cb593daaff40989e31d9 to your computer and use it in GitHub Desktop.
/**
* @param int $length
* @return null|string
*/
public function generateDomainName($length = 7)
{
$randStr = null;
srand((double)microtime(TRUE) * 1000000);
$chars = array(
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'p',
'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '1', '2', '3', '4', '5',
'6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z');
for ($rand = 0; $rand <= $length; $rand++) {
$random = rand(0, count($chars) - 1);
$randStr .= $chars[$random];
}
return $randStr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment