Model.class.php代码中的1088行开始:
return NOW_TIME >= $start && NOW_TIME <= $end;
为校验当前时间而非提交的时间字段值。
应改为:
if(!is_numeric($value)) $value = strtotime($value);
return $value >= $start && $value <= $end;
ThinkPHP3.2的一个小bug
原文:http://www.cnblogs.com/shen55/p/7215555.html