SF23103 Posted October 25, 2017 Share Posted October 25, 2017 Hello, I am getting some data from an XML source and it includes a date and time in the format: <DATE>2017-09-01T00:00:00-07:00</DATE> <TIME>00:19:43</TIME> My question is how to format that date style. Do I need to split it up somehow first in order to format it? The code I figured would work (but doesn't) was: date_format($inc->DATE, 'Y-m-d H:i:s'); Thanks for your help! Quote Link to comment https://forums.phpfreaks.com/topic/305454-xml-date-conversion/ Share on other sites More sharing options...
Solution requinix Posted October 26, 2017 Solution Share Posted October 26, 2017 How to reformat it? Parse it with either strtotime() or DateTime, then format the result with date() or ->format() respectively. Quote Link to comment https://forums.phpfreaks.com/topic/305454-xml-date-conversion/#findComment-1553032 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.