update: new generate order number method

This commit is contained in:
tokumeikoi
2021-08-19 00:58:51 +09:00
parent c957a4ca83
commit abe1ebccae
4 changed files with 10 additions and 2 deletions

View File

@ -23,6 +23,12 @@ class Helper
return md5(vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4)) . '-' . time());
}
public static function generateOrderNo(): string
{
$randomChar = rand(10000, 99999);
return date('YmdHms') . $randomChar;
}
public static function exchange($from, $to)
{
$result = file_get_contents('https://api.exchangerate.host/latest?symbols=' . $to . '&base=' . $from);