NOW() function in PHP

MoeAmine picture MoeAmine · Jan 3, 2010 · Viewed 1.6M times · Source

Is there a PHP function that returns the date and time in the same format as the MySQL function NOW()?

I know how to do it using date(), but I am asking if there is a function only for this.

For example, to return:

2009-12-01 00:00:00

Answer

troelskn picture troelskn · Jan 3, 2010

Not besides the date function:

date("Y-m-d H:i:s");