这是格式
'd-m-Y H:i:s'(15-11-2008 7:16:09)
我想改成这种格式
'Y-m-d H:i:s' (2008-11-15 07:16:09)
尝试了 strtotime() 函数,但它需要 'm' 作为 'd' 和 'd' 作为 'm' 帮助!php新手..
当前代码`
$dt = strtotime($this->input->post('insert_dts'));
$formated_date_time = date("Y-m-d H:i:s",$dt);`