mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
18 lines
445 B
PHP
18 lines
445 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Core;
|
|
|
|
use PUGX\Shortid\Factory as ShortIdFactory;
|
|
|
|
function generateRandomShortCode(int $length = 5): string
|
|
{
|
|
static $shortIdFactory;
|
|
if ($shortIdFactory === null) {
|
|
$shortIdFactory = new ShortIdFactory();
|
|
}
|
|
|
|
$alphabet = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
|
return $shortIdFactory->generate($length, $alphabet)->serialize();
|
|
}
|