PXG_2026_API/app/Services/RegistrationCodeService.php

18 lines
354 B
PHP

<?php
namespace App\Services;
class RegistrationCodeService
{
public function make(): string
{
// REG-XXXXXX (base32-ish)
$alphabet = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789';
$s = '';
for ($i=0;$i<5;$i++){
$s .= $alphabet[random_int(0, strlen($alphabet)-1)];
}
return 'REG-' . $s;
}
}