php date 加N年,减N年

已邀请:

linyu520

赞同来自:

1、在当前时间的基础上加减年份:
<?php
date_default_timezone_set('PRC');
echo date("Y-m-d", strtotime("next years")); // 下一年: 2017-10-16
echo date("Y-m-d", strtotime("+9 years")); // 加九年: 2025-10-16
echo date("Y-m-d", strtotime("-9 years")); // 减九年: 2007-10-16

 2、在指定日期的基础上加减年份:
<?php
date_default_timezone_set('PRC');
// 减五年: 1995-01-01
echo date("Y-m-d", strtotime("2000-01-01 -5 years")); 

// 加五年: 2005-01-011
echo date("Y-m-dn", strtotime("+5 years", strtotime('2000-01-01')));

要回复问题请先登录注册