1 | <?php |
||
13 | class Helper |
||
14 | { |
||
15 | /** |
||
16 | * Generates the default characters |
||
17 | * |
||
18 | * @return array |
||
19 | */ |
||
20 | 18 | private static function defaultCharacters() |
|
24 | |||
25 | /** |
||
26 | * @param int $len |
||
27 | * @param array $chars Use custom characters. Defaults to upper and lower case alphanumeric characters. |
||
28 | * @return string |
||
29 | */ |
||
30 | 18 | public static function random($len = 32, array $chars = null) |
|
41 | } |