...
Code Block |
---|
return base_convert(self::generateId(), 10, 36); |
Luckily the the length of number, that is generated by kUtil::generateId()
method is 9 digits, which produces exactly 6 symbol long text at the end.
...
...
Code Block |
---|
return base_convert(self::generateId(), 10, 36); |
Luckily the the length of number, that is generated by kUtil::generateId()
method is 9 digits, which produces exactly 6 symbol long text at the end.
...