how many ways we get current date in php

Answers were Sorted based on User's Feedback



how many ways we get current date in php..

Answer / swapna

$date_time = date('Y-m-d H:i:s'); use this one you can get
current date.

Is This Answer Correct ?    88 Yes 28 No

how many ways we get current date in php..

Answer / rohit

echo date("d-M-Y",time());

Is This Answer Correct ?    51 Yes 9 No

how many ways we get current date in php..

Answer / swapna

CURRENT_TIMESTAMP

Is This Answer Correct ?    33 Yes 21 No

how many ways we get current date in php..

Answer / rakesh dongarwar

echo $date = date("d/m/Y");

Is This Answer Correct ?    13 Yes 4 No

how many ways we get current date in php..

Answer / susmitha

$current_date=date('Y-m-d')

Is This Answer Correct ?    3 Yes 2 No

how many ways we get current date in php..

Answer / mahesh

$date = getdate()
Here $date prints as an Array.with current date and Time

Is This Answer Correct ?    24 Yes 25 No

how many ways we get current date in php..

Answer / l santosh

$date=date('Y-m-d H:i')

Is This Answer Correct ?    4 Yes 5 No

how many ways we get current date in php..

Answer / divyeshnimavat

$currtime = time();

Is This Answer Correct ?    17 Yes 19 No

how many ways we get current date in php..

Answer / tasimkhan

$date = date('d-M-Y H:i:s', strtotime(time(0))

Is This Answer Correct ?    4 Yes 7 No

Post New Answer

More PHP Interview Questions

What is difference between base_url and site_url?

1 Answers  


What exactly is PHP?

1 Answers  


How do I install php and apache on windows 10?

1 Answers  


What is session data?

1 Answers  


What can I do by cakePHP?

4 Answers  


How many php functions are there?

1 Answers  


What would occur if a fatal error was thrown in your php program?

1 Answers  


How to create a table using php?

1 Answers  


Echo is used to Display message on screen. Which is used with echo to not output the trailing newline?

1 Answers  


What is the function mysql_pconnect() useful for?

1 Answers  


What is the meaning of ‘escaping to php’?

1 Answers  


List out different arguments in PHP header function?

4 Answers  


Categories