NOW() function in PHP

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

20 s
20

You can use the date function:

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

Leave a Comment