PHP script to find and print the current date and time

by Vivek Gite on April 22, 2007 · 8 comments

Q. I would like to know what the current date or time is via my php script? Can you provide me the sample php code?

A. PHP has inbuilt functions to display current date and time.

PHP date/time functions

[a] strftime(): Format a local time/date according to locale settings

[b] date : Format a local time/date

Examples

Consider following simple example:

<?php
print strftime('%c');
?>

Output:

Mon Apr 23 01:22:58 2007

You need to pass format such as %c to strftime() to print date and time representation for the current system. You can use following format characters:

  • %m - month as a decimal number (range 01 to 12)
  • %d - day of the month as a decimal number (range 01 to 31)
  • %Y - year as a decimal number including the century
  • You can see the complete format conversion specifiers online here

You can also use date() as follows:

<?php
 print date('r');
 print "\\n";
 print date('D, d M Y H:i:s T');
 print "\\n";
?>

Output:

Mon, 23 Apr 2007 01:29:56 +0530
Mon, 23 Apr 2007 01:35:14 IST

You need to pass r format conversion to print formatted date. See the complete format conversion specifiers online here

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 8 comments… read them below or add one }

1 car sell July 12, 2009

is there any way to print date for next week in advance. how we are gonna calculate it.

Reply

2 soni February 11, 2010

very helpful

Reply

3 pondicherry June 14, 2010

thanks very useful information

Reply

4 dorathi June 17, 2010

Create a PHP web page which prints the current time in various formats and colors depending on the query string. Your php page is intended to be loaded with a simple query string which controls how the time is displayed, the page title and the background and text colors. The query string has three fields separated by colons. The first is the time format, the second is the text color and the third is the background color.

Reply

5 omkar October 28, 2010

i will design contact us page in php
in that i will send some information that fill to user. and also send current time and date

then how can i send current time and date to mail
i will send date by using date()
so u will tell me how can i send current time

thank you

Reply

6 govardhan January 25, 2011

nice information

Reply

7 Shobana T March 10, 2011

useful script :-)

Reply

8 Amit November 1, 2011

I want to print date in php but date should be independent of system date means if I change the system date then it will print the current date from internet like if i change my system date from 1 nov to 23 nov then script will print the date of that day only not the system date 23 nov.

Please suggest me some solution.
Thank You in Advance.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 15 + 10 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.



Previous post:

Next post: