🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
当前时间 ``` $time =time(); //当前时间戳 $time =date('Y-m-d h:i:s', time()); //当前格式化时间 ``` 格式化时间转时间戳 ``` $time = strtotime(date($data['time_expire_b'])); ``` 时间戳转格式化时间 ``` $time = date('Y-m-d H:i:s',time()); ``` 时间戳加1天 ``` $time = time();// 当前时间戳 $time_expire = date('Y-m-d H:i:s',strtotime("+1 day",$time)); $time_expire_b = strtotime(date($time_expire)); //转回时间戳 ``` 格式化时间加1天 ``` $time = "2017-01-10 21:10:16"; // 当前时间戳 $time_expire = date('Y-m-d H:i:s',strtotime("+1 day",$time));; $time_expire_b = strtotime(date($time_expire)); //转回时间戳 ``` 附时间单位 ``` second = 秒 minute = 分 hour = 时 day = 天 week = 周 month = 月 year = 年 ```