Answers for "DateTime() php"

PHP
1

date now php

date("Y-m-d H:i:s");
Posted by: Guest on October-21-2020
3

datetime php

$dateTime = new \DateTime();
$dateTime->format('Y-m-d H:i:s');
Posted by: Guest on June-15-2020
2

datetime php

# From a date Object:
date_format ( DateTimeInterface $object , string $format )

# From the current time
$dateTime = new \DateTime(); 
// or pass a string or int ->`DateTime($date_time)`
$dateTime->format('y-j-d H:i:s T'); #print ex: 21-2-02 16:00:01 PST

# Or a quick one-liner:
date('g:i A m-d-Y', strtotime($date_time)); #print ex: 2:00 PM 02-02-2021
Posted by: Guest on January-15-2021
3

date time format php

$today = date("F j, Y, g:i a");                 // March 10, 2001, 5:16 pm
Posted by: Guest on July-22-2020

Browse Popular Code Answers by Language