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 Quote 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 = /(.*), / Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/178048-solved-date-format/#findComment-938786 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.