This question already has an answer here:
- Convert one date format into another in PHP 15 answers
I want to convert my date from GMT to simple Date format , i look around on many questions and answers on this site but not succeed.
I have Date
$date = '2010-12-01T02:00:00:000-0500';
and I want to convert this date to 12-01-2010
, i already tried with the date('d-m-Y',strtotime($date));
but it not work here.
Thanks in Advance.
</div>