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

when we select some checkboxes and we went for next page if we came back to prevoius page the selcted checkboxe should be checked

2 Answers  


what is the diffrence between for and foreach?

11 Answers   Hirolasoft, IBM, Photon,


What's php?

0 Answers  


Is learning php easy?

0 Answers  


How can we get second of the current time using date function?

2 Answers   FD, IBM,






Explain me what is the difference between explode() and split() functions?

0 Answers  


how do we can copy of the content of a web page with the help og the URL and display them onto any other page

5 Answers  


how to upload more than 50 mb? i tried but session was expired....certain time .....i was set session duration three days .... how to rectified? if any one know that post ur answer as soon as possible?already i was increase php.ini and set Also increase Memory_limit Post_max_size upload_max_filesize..........but not working......

0 Answers  


How do you find the length of a string in php?

0 Answers  


What are the advantages of object-oriented programming in php?

0 Answers  


How could I install codeignitor ?

0 Answers  


Why is facebook still using php?

0 Answers  


Categories