how to get server date and time?

Answers were Sorted based on User's Feedback



how to get server date and time?..

Answer / n.k.k

using date function date();

Is This Answer Correct ?    49 Yes 20 No

how to get server date and time?..

Answer / amol

By Using function Date in php

Definition and Usage

The getdate() function returns an array that contains date
and time information for a Unix timestamp.

The returning array contains ten elements with relevant
information needed when formatting a date string:

* [seconds] - seconds
* [minutes] - minutes
* [hours] - hours
* [mday] - day of the month
* [wday] - day of the week
* [year] - year
* [yday] - day of the year
* [weekday] - name of the weekday
* [month] - name of the month

Is This Answer Correct ?    16 Yes 6 No

how to get server date and time?..

Answer / raja

$timestamp = time();
$datum = date("Y-m-d (D) H:i:s",$timestamp);
echo "Current date and local time on this server is $datum
<br>\n";

Is This Answer Correct ?    14 Yes 7 No

how to get server date and time?..

Answer / arya

Try following queries

1] get date time
"SELECT NOW()"
2] get time
"SELECT CURTIME()"
3] get date
"SELECT CURDATE()"

Is This Answer Correct ?    12 Yes 9 No

how to get server date and time?..

Answer / selc_sekar

$date1=date("h-i-s");

Is This Answer Correct ?    14 Yes 13 No

how to get server date and time?..

Answer / selva

date("h-i-s");

Is This Answer Correct ?    7 Yes 7 No

how to get server date and time?..

Answer / guest

using $_SERVER['REMOTE_ADDR']

Is This Answer Correct ?    9 Yes 13 No

how to get server date and time?..

Answer / rajasekar

using $_SERVER['REMOTE_ADDR']

Is This Answer Correct ?    6 Yes 13 No

how to get server date and time?..

Answer / agila

now();

Is This Answer Correct ?    17 Yes 26 No

how to get server date and time?..

Answer / kiran

time()[TIME STAMP]

Is This Answer Correct ?    7 Yes 29 No

Post New Answer

More PHP Interview Questions

What is a stored procedure in mysql?

0 Answers  


How to close a session properly?

0 Answers  


Name some of the constants in php and their purpose.

0 Answers  


How will you calculate days between two dates in PHP?

0 Answers  


Is php faster than nodejs?

0 Answers  






How data or variable can be receive or send from PHP to HTML page??

3 Answers   TCS,


What is http php?

0 Answers  


Explain what are some new features introduced in php7?

0 Answers  


Who is the father of PHP and explain the changes in PHP versions?

13 Answers   Befree, iMark Group, Netizen,


write the function to fetch a image from mysql databases (datatype blob).

1 Answers  


What is php constructor?

0 Answers  


What does PHP stand for?

7 Answers  


Categories