<?php //第一部分:日期和时间函数 ----------------------------- time(); //int time(void),返回当前时间的时间戳 mktime(); //int mktime(h, i, s, m, d, Y),返回指定时间的时间戳 $nextWeek = strtotime('+1 week'); //返回现在的时间对应下周的时间戳 date('Y-m-d H:i:s', strtotime('+1 week')); //格式化输出时间 date_d…