PHP 日期时间函数 time() PHP 日期时间函数 strtotime() PHP 日期时间函数 timezone_abbreviations_list() PHP 日期时间函数 time() <?php $nextWeek = time() + (7 * 24 * 60 * 60); echo 'Now: '. date('Y-m-d') ."\n"; echo 'Next Week: '. date('Y-m-d', $nextWeek) ."\n"; ?> PHP 日期时间函数 strtotime() PHP 日期时间函数 timezone_abbreviations_list()