我试过这个:
$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,它对我有用.有没有改变输入格式的机会?
原文链接:https://www.f2er.com/php/138552.html除此之外,您当然可以从时间戳中减去1秒.但请注意,您需要使用3月7日:
$date_string = strtotime('7 Mar,2011 midnight') - 1;