Matrixkid Posted October 17, 2009 Share Posted October 17, 2009 Hi there, I have a date format like this right now: Sat, 17 Oct 2009 17:04:00 I need to turn that into: 2009-10-17T17:04:00Z My thought process was to remove with regex "Sat," and then just split the string up. So I was wondering then what the regex would be for "Sat, " This would apply to all cases. Fri, 16 Oct 2009 15:00:00 Thu, 15 Oct 2009 22:01:00 So I just need the first 3 letters with the comma and space after the comma to be removed. thanks! MK Link to comment https://forums.phpfreaks.com/topic/178048-solved-date-format/ Share on other sites More sharing options...
Matrixkid Posted October 17, 2009 Author Share Posted October 17, 2009 reg = /(.*), / Link to comment https://forums.phpfreaks.com/topic/178048-solved-date-format/#findComment-938784 Share on other sites More sharing options...
nrg_alpha Posted October 17, 2009 Share Posted October 17, 2009 I would make use of PHP's built in dateTime class. Link to comment https://forums.phpfreaks.com/topic/178048-solved-date-format/#findComment-938786 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.