You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
344 B
17 lines
344 B
|
2 months ago
|
<?php
|
||
|
|
|
||
|
|
namespace App\Support;
|
||
|
|
|
||
|
|
use Carbon\CarbonInterface;
|
||
|
|
|
||
|
|
/** 业务展示时间统一按北京时间输出。 */
|
||
|
|
final class BizDateTime
|
||
|
|
{
|
||
|
|
public const TIMEZONE = 'Asia/Shanghai';
|
||
|
|
|
||
|
|
public static function toIso8601(?CarbonInterface $dt): ?string
|
||
|
|
{
|
||
|
|
return $dt?->copy()->timezone(self::TIMEZONE)->toIso8601String();
|
||
|
|
}
|
||
|
|
}
|