Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
RandomValidator.php
Go to the documentation of this file.
1<?php
3
5
6 public function generate(?string $value = null): string {
7 $bytes = random_bytes((int) ($value ?? 32));
8 return \rtrim(\strtr(\base64_encode($bytes), '+/', '-_'), '=');
9 }
10}
11