GrumpyBum84 Posted January 20, 2013 Share Posted January 20, 2013 Hi All, Hopefully there is a simple solution but I cannot get the time display working on an Application I am building. Well, this works but not the way I want it too I have done the following, $date=getdate(); $time="$date[hours]:$date[minutes]"; However, when it is say 11:07pm I get the following when I print this to HTML ("print $time;"), 23:7 I have googled this but I am having trouble working out how to ensure this displays '23:07' instead. And I know that I could write code to detect the 1 char length and add a '0' in the front, but I was hoping that there is a more simplistic answer to this. This works fine when the minutes selection in 30 or any other number ending in '0', only an issue with the leading 0. Thanks in advance. Quote Link to comment https://forums.phpfreaks.com/topic/273376-time-display-in-php/ Share on other sites More sharing options...
trq Posted January 20, 2013 Share Posted January 20, 2013 Take a look at date. Quote Link to comment https://forums.phpfreaks.com/topic/273376-time-display-in-php/#findComment-1407024 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.