mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
298 B
PHTML
18 lines
298 B
PHTML
4 years ago
|
<?php
|
||
|
|
||
|
namespace App\Services;
|
||
|
|
||
|
use Illuminate\Support\Carbon;
|
||
|
|
||
|
class SnowflakeService {
|
||
|
|
||
|
public static function byDate(Carbon $ts = null)
|
||
|
{
|
||
|
$ts = $ts ? now()->parse($ts)->timestamp : microtime(true);
|
||
|
return ((round($ts * 1000) - 1549756800000) << 22)
|
||
|
| (1 << 17)
|
||
|
| (1 << 12)
|
||
|
| 0;
|
||
|
}
|
||
|
|
||
|
}
|