vote up 0 vote down star

Hi, I need to get the current time, in Hour:Min format can any one help me in this.

Thanks in advance Shibin

flag

45% accept rate

5 Answers

vote up 9 vote down check
print date('H:i');
$var = date('H:i');

Should do it, for the current time. Use a lower case h for 12 hour clock instead of 24 hour.

link|flag
1  
full documentation here- us3.php.net/manual/en/function.date.php – Kip Oct 6 at 14:30
Thanks a lot. but its not showing my system time.. there is some difference. – Shibin Moideen Oct 6 at 14:31
1  
The output from date() will show the local time of the server. You may need to perform timezone adjustments, or else override the server's time zone as mentioned in other posts. Typically, your best bet is to deal with UTC/GMT timestamps (gmdate() et al) and make timezeone adjustments based off GMT, since it's portable across more configurations. – Rob Oct 6 at 21:38
vote up 3 vote down

Try this:

$hourMin = date('H:i');

This will be 24-hour time with an hour that is always two digits. For all options, see the PHP docs for date().

link|flag
vote up 0 vote down

In addressing your comment that you need your current time, and not the system time, you will have to make an adjustment yourself, there are 3600 seconds in an hour (the unit timestamps use), so use that. for example, if your system time was one hour behind:

$time = date('H:i',time() + 3600);

link|flag
vote up 1 vote down

print date('H:i');

You have to set the correct timezone in php.ini .

Look for these lines:

[Date]

; Defines the default timezone used by the date functions

;date.timezone =

It will be something like :

date.timezone ="Europe/Lisbon"

Don't forget to restart your webserver.

link|flag
This is deprecated. You need to set your timezone in the actual PHP script (there's a strict error thrown when you don't). php.net/date-default-timezone-set is the function you should use when setting your timezone in your PHP script. – dcousineau Oct 6 at 18:45
vote up 0 vote down

Another way to address the timezone issue if you want to set the default timezone for the entire script to a certian timezone is to use date_default_timezone_set() then use one of the supported timezones.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.