now function in php code example
Example 1: date now php
date('Y-m-d H:i:s')
Example 2: date now php
date("Y-m-d H:i:s");
Example 3: php get current datetime mysql format
date('Y-m-d H:i:s');
Example 4: time function in php
Return the current time as a Unix timestamp, then format it to a date:
<?php
/* Unix Timestamp */
$timestamp = time();
echo $timestamp . "<br>";
echo date("d/m/Y", $timestamp);
?>
Example 5: date now php
echo date('c');
// 2015-07-27T00:00:00+02:00