hi have my : regional format date like : 01-Iulie-2014 or 01-Decembrie-2015 and I want to convert it into: 2014-07-01 or 2015-12-01. I tried something like this,but with no result:
$mydate = date('Y-m-d', strtotime($this->input->post('pay_date')));
but strtotime returns me false
Is there a function to do this stuff ?