php – strtotime – 午夜之前的第二个

前端之家收集整理的这篇文章主要介绍了php – strtotime – 午夜之前的第二个前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试过这个:
$date_string = strtotime('6 Mar,2011 23:59:59');

但我认为PHP由于某种原因无法解释,因为它返回空.我试过这个:

$date_string = strtotime('6 Mar,2011 midnight');

以上工作但我需要它是在午夜之前的第二个,即当天的最后一秒.如何在不改变2011年3月6日部分的情况下获得strtotime返回?

如果我使用2011年3月6日23:59:59,它对我有用.有没有改变输入格式的机会?

除此之外,您当然可以从时间戳中减去1秒.但请注意,您需要使用3月7日:

$date_string = strtotime('7 Mar,2011 midnight') - 1;
原文链接:https://www.f2er.com/php/138552.html

猜你在找的PHP相关文章