标签: php time
可能重复: PHP Date Time Current Time Add Minutes
我需要在指定时间内添加30分钟,以下是结果,但它将如何
下午4:50不是现在的时间 30分钟需要在指定时间内添加 结果是下午5:20
答案 0 :(得分:2)
使用strtotime
echo date('G:i:s', strtotime('NOW + 30 minutes'));
demo(GTM + 1)
答案 1 :(得分:1)
echo date('g:i a', time()+30*60);
这是给你的。
答案 2 :(得分:-1)
Here's an article that shows some date math examples。您可能还会发现PHP Time Manual很有用。