如何更改日期格式?

时间:2015-08-26 12:49:56

标签: php codeigniter

我想将日期格式从08/10/2015更改为2015-10-08

我尝试过以下代码但不适合我。

    $startDate = $this->input->post('startDate');//08/10/2015
    $startDateFormat = date('Y-m-d',strtotime($startDate));
    $endDate = $this->input->post('endDate');//09/10/2015
    $endDateFormat = date('Y-m-d',strtotime($endDate));

0 个答案:

没有答案
相关问题