Skip to content

Instantly share code, notes, and snippets.

@oscarmarcelo
Created April 19, 2017 23:56
Show Gist options
  • Save oscarmarcelo/294009f6605535ebb9179cffc8a61de3 to your computer and use it in GitHub Desktop.
Save oscarmarcelo/294009f6605535ebb9179cffc8a61de3 to your computer and use it in GitHub Desktop.
Generate an identifier code for invoices
<?php
define('KEY_CHARS', 'ACEFGHJKPQRSTWXYZ23456789'); // characters which cannot be confused phonetically or by bad handwriting
function generate_code($len = 6) {
$k = str_repeat('.', $len);
while ($len--) {
$k[$len] = substr(KEY_CHARS, mt_rand(0, strlen(KEY_CHARS) - 1), 1);
}
return $k;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment