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 the url rewriting?how to rewrite the url? give any example

1 Answers  


Can I use php in visual studio?

0 Answers  


How to avoid the undefined index error?

0 Answers  


How would you determine the size of a file in php?

0 Answers  


Is laravel frontend or backend?

0 Answers  






Tell me what is htaccess? Why do we use this and where?

0 Answers  


What are the file upload settings in configuration file?

0 Answers  


am from coimbatore.am learning php&mysql. what will be the approx salary for me if i get a job in coimbatore.

0 Answers   HCL,


How to read and display a HTML source from the website url?

0 Answers  


What is foreach loop in php?

0 Answers  


What is php mean?

0 Answers  


Do you know what is the difference between the include() and require() functions?

0 Answers  


Categories