Skip to content

Instantly share code, notes, and snippets.

@Jspascal
Created May 28, 2025 13:26
Show Gist options
  • Save Jspascal/b64aa19c83eaa960868a19a2b982a6c3 to your computer and use it in GitHub Desktop.
Save Jspascal/b64aa19c83eaa960868a19a2b982a6c3 to your computer and use it in GitHub Desktop.
sample reference generator
function generateReference(): string
{
$characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$randomString = '';
for ($i = 0; $i < 16; $i++) {
$randomString .= $characters[rand(0, strlen($characters) - 1)];
}
return 'REF' . $randomString;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment