numan82 Posted February 24, 2008 Share Posted February 24, 2008 Hi I am having array which stores the Date Format as DD-MM-YYYY now I want to convert this format and store into the DB field but the DB field accept the format YYYY-MM-DD. so what should I do? Thanks! for example 01/03/2008 which need to convert first YYYY-MM-DD Thanks in Advance. Link to comment https://forums.phpfreaks.com/topic/92699-changing-date-format-from-dd-mm-yyyy-to-yyyy-mm-dd/ Share on other sites More sharing options...
Daniel0 Posted February 24, 2008 Share Posted February 24, 2008 Use strtotime() to make it a UNIX timestamp and date() to make it a formatted date again. Link to comment https://forums.phpfreaks.com/topic/92699-changing-date-format-from-dd-mm-yyyy-to-yyyy-mm-dd/#findComment-474985 Share on other sites More sharing options...
paul2463 Posted February 24, 2008 Share Posted February 24, 2008 or you could explode and rebuild the date <?php $date = "01-03-2008"; $pieces = explode("-", $date); $newdate = "$pieces[2]-$pieces[1]-$pieces[0]" ?> Link to comment https://forums.phpfreaks.com/topic/92699-changing-date-format-from-dd-mm-yyyy-to-yyyy-mm-dd/#findComment-475000 Share on other sites More sharing options...
Barand Posted February 24, 2008 Share Posted February 24, 2008 or use MySQL STR_TO_DATE() function <?php $mydate = '01/03/2008'; $sql = "INSERT INTO tablename (datecol) VALUES (STR_TO_DATE('$mydate', '%d/%m/%Y'))"; Link to comment https://forums.phpfreaks.com/topic/92699-changing-date-format-from-dd-mm-yyyy-to-yyyy-mm-dd/#findComment-475008 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.