当前时间
```
$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 = 年
```