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 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 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.