Skip to content

Instantly share code, notes, and snippets.

View amirkhiz's full-sized avatar

Siavash Habil amirkhiz

  • Sony
  • Turkey
View GitHub Profile
@amirkhiz
amirkhiz / unique-generator.php
Last active November 21, 2019 12:48
Generate unique Alphanumeric code PHP
<?php
// Reference https://codebriefly.com/unique-alphanumeric-string-php/
function unique_code($limit)
{
return substr(base_convert(sha1(uniqid(mt_rand())), 16, 36), 0, $limit);
}
echo unique_code(8);