我想将日期格式从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));