php datetim 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: php datetime create
$date = DateTime::createFromFormat('d-m-Y', '15-12-2020');