php echo datetime code example

Example 1: only date in php

date('Y:m:d', strtotime($date))

Example 2: php format date

<?php
  // To change the format of an existing date
  $old_date_format = "20/03/1999";
  $new_data_format = date("Y-m-d H:i:s", strtotime($old_date_format));

Example 3: format('Y-m-d H:i:s'); ?>

<?php
$date = new DateTime('2000-01-01');
echo $date->format('Y-m-d H:i:s');
?>

Example 4: date to string php

$date_string_prepared = date_create("2020-08-07");
$date_string = $date_string_prepared->format("d M Y");
// result 07 Jul 2020

Tags:

Php Example