<?php <BR>date_default_timezone_set('PRC'); //默认时区 <BR>echo "今天:",date("Y-m-d",time()),"<br>"; <BR>echo "今天:",date("Y-m-d",strtotime("18 june 2008")),"<br>"; <BR>echo "昨天:",date("Y-m-d",strtotime("-1 day")), "<br>"; <BR>echo "明天:",date("Y-m-d",strtotime("+1 day")), "<br>"; <BR>echo "一周后:",date("Y-m-d",strtotime("+1 week")), "<br>"; <BR>echo "一周零两天四小时两秒后:",date("Y-m-d G:H:s",strtotime("+1 week 2 days 4 hours 2 seconds")), "<br>"; <BR>echo "下个星期四:",date("Y-m-d",strtotime("next Thursday")), "<br>"; <BR>echo "上个周一:".date("Y-m-d",strtotime("last Monday"))."<br>"; <BR>echo "一个月前:".date("Y-m-d",strtotime("last month"))."<br>"; <BR>echo "一个月后:".date("Y-m-d",strtotime("+1 month"))."<br>"; <BR>echo "十年后:".date("Y-m-d",strtotime("+10 year"))."<br>"; <BR>?><BR>
php判断一个日期距今天还有多少天
<BR><?php <BR>echo (strtotime('2020-5-20′)-strtotime(date(“Y-m-d”)))/86400;&#<i style="color:transparent">本#文来源gaodai$ma#com搞$$代**码网$</i><button>搞代gaodaima码</button>65279; <BR>?> <BR>