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 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'); Link to comment https://forums.phpfreaks.com/topic/287986-format-180000-as-600pm/#findComment-1477157 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.