Codeigniter添加数字到目前为止

时间:2016-01-25 17:08:40

标签: php codeigniter date

嗨大家我有一个号码,我想增加日期,所以如果日期是2016-01-01将返回2016-04-01

$month = 3;
$date = date('Y-m-d', strtotime(str_replace('/', '-', $this->input->post('date'))));

谢谢!

2 个答案:

答案 0 :(得分:1)

未经测试,但您可以执行以下操作:

{{1}}

答案 1 :(得分:1)

您可以使用以下内容在指定日期添加三个月:

$Date = date('Y-m-d', strtotime("+3 months", strtotime(str_replace('/','-', $this->input->post('date') ))));