指定日期的第二天:


$date ='2014-10-9';
echo date("Y-m-d",strtotime("+1 day",strtotime($date))); //写法一
echo '<br />';

echo date("Y-m-d",strtotime("$date +1 day")); //写法二
echo '<br />';

明天:
echo date("Y-m-d",strtotime("+1 day"));
echo '<br />';

三个月后:
echo date("Y-m-d",strtotime("+3 month"));

比较:
if(strtotime($date_end)<strtotime($data_start)){

     //代码片断

}