strtotime bug上个月认识到了

时间:2011-10-04 18:14:30

标签: php strtotime

echo strtotime("first day of last month");

返回1317492376,但是9月1日下午6点!它不应该返回本月第一秒的时间戳吗?如果不是,如何获得它?

1 个答案:

答案 0 :(得分:2)

仅指定日期时,

strtotime()不会触及时间部分。试试这个:

strtotime( "first day of last month 00:00" )