Skip to content

Instantly share code, notes, and snippets.

View medeiroz's full-sized avatar
🏠
Working from home

Flávio Medeiros medeiroz

🏠
Working from home
View GitHub Profile
@medeiroz
medeiroz / ReferenceCodeGenerator.php
Created June 24, 2024 15:21
PHP Reference Code Generator with Custom Base. Increment 0-9 A-Z alphanumeric
<?PHP
class ReferenceCodeGenerator {
private readonly int $base;
public function __construct(
private readonly int $codeLength = 6,
private readonly string $characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ',
) {
$this->base = strlen($this->characters);