标签: php time timestamp
我需要为下个月的确切日期生成时间戳。
我想自动生成下个月10日的时间戳。
我尝试过使用strtotime,但无法解决这个问题。
谢谢,
答案 0 :(得分:2)
试试这个:
echo date('Y-m-d', strtotime(date('Y-m-10'). '+1 month'));