日期减去秒总是返回相同

echo date('Y-m-d H:m:s', strtotime('15 minutes ago')) . "<br/>";
echo date('Y-m-d H:m:s', time()-900) . "<br/>";
echo date('Y-m-d H:m:s', time());

我在Windows 7上运行WAMPP,并且所有3次调用都返回同一时间。


'H:m:s' should be 'H:i:s'
   ^                 ^

指出不同

  • m =几个月
  • 我=分钟

  • 你的代码中的错误:

    'Ymd H:m:s'应该是'Ymd H:i:s'

    m是月份,我是分钟

    链接地址: http://www.djcxy.com/p/59023.html

    上一篇: date minus seconds always returns same

    下一篇: PHP Timezone different then Centos date