Skip to content

Formatting Dates

Dates can be formatted using the format() method of the DateTime class.

$date = new DateTime();
echo $date->format("Y-m-d");
echo $date->format("d/m/Y");
echo $date->format("Y-m-d H:i:s");