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

Explain me difference between mysql_connect and mysql_pconnect?

0 Answers  


What is the difference between php and java?

0 Answers  


Explain how is it possible to set an infinite execution time for php script?

0 Answers  


What is is_null() in php?

0 Answers  


Explain what does $_files means?

0 Answers  






What good is polymorphism?

0 Answers  


Do you know how to get the ip address of the client?

0 Answers  


What is action hooks and filter hooks?

0 Answers  


How can I reverse sort an array keeping the correlation between the index and value?

2 Answers   Rushmore Consultancy,


"mysql_fetch_row — Get a result row as an enumerated array",this sentence comes from the PHP offical manual.However ,i can not understand the words "enumerated array".I need some help.Thanks a lot to everyone that reply.

0 Answers  


What changes to done in PHP.ini file for file uploading?

2 Answers  


Tell me how can we get the error when there is a problem to upload a file?

0 Answers  


Categories