Danny620 Posted April 24, 2014 Share Posted April 24, 2014 Hi I have a string as 18:00:00 and i want to be able to formate it is 6:00pm Quote Link to comment https://forums.phpfreaks.com/topic/287986-format-180000-as-600pm/ Share on other sites More sharing options...
Ch0cu3r Posted April 24, 2014 Share Posted April 24, 2014 Use DateTime to convert it. $time = new DateTime('18:00:00'); echo $time->format('g:iA'); Quote Link to comment https://forums.phpfreaks.com/topic/287986-format-180000-as-600pm/#findComment-1477157 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.