mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
16 lines
262 B
PHP
Executable File
16 lines
262 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Classes;
|
|
|
|
|
|
final class common
|
|
{
|
|
|
|
/**
|
|
* @param int $length
|
|
* @return string
|
|
*/
|
|
public static function generateRandomHash(int $length = 10): string {
|
|
return substr(bin2hex(ceil($length / 2)), 0, $length);
|
|
}
|
|
} |