liuzhiqiangruc 发表于 2013-2-7 00:53:32

PHP将一个日期字符串转换成举例当前的天数

输入为一个日期字符串,例如:2011-3-23
输出为举例当前的天数,例如:1
 
代码为:
 
    public static function convertDateToLong($dateStr){      $checkPattern = "/^\d{4}(((-\d{1,2}){2})|((\.\d{1,2}){2})|((\/\d{1,2}){2}))$/";      $date = substr(trim($dateStr),0,strpos(trim($dateStr)," ")>0 ? strpos(trim($dateStr)," ") : strlen(trim($dateStr)));      if(preg_match($checkPattern,$date)){            preg_match("/([-\/.])/",$date,$outer);            $dilimeter = $outer;            list($year,$month,$day) = explode($dilimeter,$date);            if(checkdate($month,$day,$year)){                $spsec = time()-mktime(0,0,0,$month,$day,$year);                if($spsec < 0) throw new Exception("date can not be after today!!!");                $spday = floor($spsec/24/60/60);                return $spday;            }            else{                throw new Exception("the date input is not a valid date");            }      }      else{            throw new Exception("the dateStr is wrong formatted!!!");      }    }
页: [1]
查看完整版本: PHP将一个日期字符串转换成举例当前的天数