This commit is contained in:
cano
2024-03-08 00:58:23 +08:00
parent bebbee4184
commit b14c000bc3
25 changed files with 1681 additions and 8 deletions

View File

@ -61,6 +61,11 @@ class Tools
return json_decode($aData, JSON_UNESCAPED_UNICODE);
}
static function getMd5($value,$salt = ''): string
{
return md5(md5($value.$salt));
}
}