日期格式 - 如何在php中添加'n'小时到当前时间?

时间:2015-08-03 04:11:40

标签: php date time

我得到当前时间:

$today = time();
$date = date('h:i:s A', strtotime($today));

如何将5小时添加到当前时间?

1 个答案:

答案 0 :(得分:0)

$today = time();
date('h:i:s A', strtotime('+5 hours'), $today);

strtotime将以英语解析任何文本日期时间描述。