标签: php strtotime
echo strtotime("first day of last month");
返回1317492376,但是9月1日下午6点!它不应该返回本月第一秒的时间戳吗?如果不是,如何获得它?
1317492376
答案 0 :(得分:2)
strtotime()不会触及时间部分。试试这个:
strtotime()
strtotime( "first day of last month 00:00" )