Để thêm thời gian một mốc thời gian có sẵn làm theo mẫu bên dưới:
// set timezone
date_default_timezone_set('GMT');
//set an date and time to work with
$start = '2014-06-01 14:00:00';
//display the converted time
echo date('Y-m-d H:i',strtotime('+1 hour +20 minutes',strtotime($start)));
date_default_timezone_set('GMT');
//set an date and time to work with
$start = '2014-06-01 14:00:00';
//display the converted time
echo date('Y-m-d H:i',strtotime('+1 hour +20 minutes',strtotime($start)));
Các loại thời gian có thể chỉnh sửa:
+1 day = Thêm 1 ngày
+1 hour = Thêm 1 giờ
+10 minutes = Thêm 10 phút
+10 seconds = Thêm 10 giây
+1 day = Thêm 1 ngày
+1 hour = Thêm 1 giờ
+10 minutes = Thêm 10 phút
+10 seconds = Thêm 10 giây
Có thể đổi thành + thành -
0 Nhận xét