<?PHP//今天与2009年1月1日相差多少天$Date_1=date("Y-m-d");$Date_2="2009-1-1";$d1=strtotime($Date_1);$d2=strtotime($Date_2);$Days=round(($d1-$d2)/3600/24);echo "今天与2009年1月1日相差".$Days."天";//今天到2009年12月31日还有多少天$Date_1=date("Y-m-d");$Date_2="2009-12-31";$d1=strtotime($Date_1);$d2=strtotime($Date_2);$Days=round(($d2-$d1)/3600/24);echo "今天到2009年12月31日还有".$Days."天";?>