$date1 = new DateTime('now', new DateTimeZone('utc')); //DateTime tạo đối tượng Datetime múi giờ utc chuẩn london có giá trị là hiện tại
$date2 = new DateTime('2019-01-17', new DateTimeZone('utc')); //DateTime tạo đối tượng Datetime múi giờ utc chuẩn london có giá trị 17/01/2019 00:00:00
var_dump($date1,$date2);
kết quả
D:\www\vsmarty\crfs\demo.php:24:
object(DateTime)[1]
public 'date' => string '2019-01-18 06:17:23.841066' (length=26)
public 'timezone_type' => int 2
public 'timezone' => string 'UTC' (length=3)
D:\www\vsmarty\crfs\demo.php:24:
object(DateTime)[2]
public 'date' => string '2019-01-17 00:00:00.000000' (length=26)
public 'timezone_type' => int 2
public 'timezone' => string 'UTC' (length=3)
$diff = $date1->diff($date2);
var_dump($diff); //DateInterval
kết quả:
D:\www\vsmarty\crfs\demo.php:26:
object(DateInterval)[3]
public 'y' => int 0
public 'm' => int 0
public 'd' => int 1
public 'h' => int 6
public 'i' => int 17
public 's' => int 23
public 'f' => float 0.841066
public 'weekday' => int 0
public 'weekday_behavior' => int 0
public 'first_last_day_of' => int 0
public 'invert' => int 1
public 'days' => int 1
public 'special_type' => int 0
public 'special_amount' => int 0
public 'have_weekday_relative' => int 0
public 'have_special_relative' => int 0
year, month, day, hour, minute, second, milisecond, millisecond
ví dụ tạo một biến thời gian sau đó cộng thêm giá trị 1 ngày
$now = new DateTime('now', new DateTimeZone('utc')); //DateTime hiện tại
var_dump($now);
$now->modify("+1 day"); //hiện tại cộng thêm 1 ngày
var_dump($now);
$now = new DateTime('now', new DateTimeZone('utc')); //DateTime hiện tại
var_dump($now);
$now->modify("-1 day"); //hiện tại trừ đi 1 ngày
var_dump($now);