我的表中有三列,未来3个月像拳头日期(下个月),次日(下个月+2)和三等(下个月+3),这些是DATE类型。我想保存我的日期如下09/09/2017,09/10/2017和09/11/2017和当前月份是07/08/2017以上3个日期与当前月份日期无关,如07/08 / 2017
我尝试过以下代码,但它与当月有关
$date1 = date('Y-m-d', strtotime('+1 month'));
$date2 = date('Y-m-d', strtotime('+2 month'));
$date3 = date('Y-m-d', strtotime('+3 month'));
$install = array(
"invoiceid" =>$this->input->post('salesInvoiceno', TRUE),
"fistdate" =>$date1,
"secondate" =>$date2,
"thirdate" =>$date3
);
答案 0 :(得分:0)
$ time = strtotime(" 2010-08-06"); $ date1 = date(' Ym-d',strtotime(' +1 month' ,$ time)); $ date2 = date(' Ym-d',strtotime(' + 2个月',$ time)); $ date3 = date(' Ym -d',strtotime(' + 3个月',$ time)); echo $ date1。' ' $ date2的' ' $ DATE3;