NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
>[info] 日期转换为时间戳 使用PHP 内置`DateTime`类: ~~~ <?php declare(strict_types=1); namespace Easydingtalk\util; use DateTime; class Time { /* * 实例化 */ public static function setDate(string $date){ return new DateTime($date); } /* * 转换 */ public static function toTime(string $date,bool $isMilisecond = false){ // 是否为Unix时间戳毫秒 if($isMilisecond){ return self::setDate($date)->getTimestamp() * 1000; }else{ return self::setDate($date)->getTimestamp(); } } } ~~~