php datetime P code example
Example 1: php datetime
/**
* Its always best to use a datetime object
*/
$dateTime = new \DateTime();
/**
* You can get the string by using format
*/
$dateTime->format('Y-m-d H:i:s');
Example 2: date time format php
$today = date("F j, Y, g:i a"); // March 10, 2001, 5:16 pm