我有一个显示用户提示的代码,例如
echo "Please read a new rulebook";
在PHP中有没有办法添加一个月后删除此提示的代码(所以我不必自己手动删除它?)?
答案 0 :(得分:0)
代码:(替换" SomeDate"与当前时间,如2016年8月4日15:04:00)
if(strtotime("now")<strtotime("SomeDate +1month")) echo "Please read a new rulebook";