This commit is contained in:
2023-12-21 22:01:33 +08:00
parent 439bb4afd1
commit 4d44f0206c
14 changed files with 506 additions and 20 deletions

View File

@ -39,5 +39,10 @@ class Tools
return mb_substr($sStr, 0, $iStart) . $sHideStr . mb_substr($sStr, $iStart + $iEnd);
}
static function getRandNum(): int
{
return rand(100000,999999);
}
}