Which PHP function can return the current date/time?
According to the article How to Get Current Datetime (NOW) with PHP, there are two common ways to get the current date. To get current datetime (now) with PHP, you can use the date
class with any PHP version, or better the datetime
class with PHP >= 5.2.
Various date format expressions are available here.
This expression will return NOW in format Y-m-d H:i:s
.
This expression will return NOW in format Y-m-d H:i:s
.
format('Y-m-d H:i:s');
?>