几个比较常用的php时间获取方法

2019-12-06  本文已影响0人  晨雨微风

// 打印明天此时的时间戳 可+2, +3, ...

echo strtotime('+1 day') . "\n";

// 打印昨天此时的时间戳

echo strtotime('-1 day') . "\n";

// 打印下个星期此时的时间戳

echo strtotime('+1 week'). "\n";

// 打印上个星期此时的时间戳

echo strtotime('-1 week'). "\n";

// 指定打印下星期几的时间戳

echo strtotime('next Monday'). "\n";

// 指定打印上星期几的时间戳

echo strtotime('last Monday'). "\n";

推荐: 浮生无事的博客

上一篇 下一篇

猜你喜欢

热点阅读