wupengfei 2 years ago
parent
commit
354482bf91
1 changed files with 0 additions and 13 deletions
  1. 0 13
      application/api/common.php

+ 0 - 13
application/api/common.php

@@ -35,19 +35,6 @@ function get_calendar($day = 7,$type='asc'){
    return $data;
 }
 
-/**
- * @param $start 验证开始时间
- * @param $end   验证结束时间
- * @param $check_st  已有活动开始时间
- * @param $check_end 已有活动结束时间
- * @return bool  true 可以创建活动
- */
-function check_act_time($start,$end,$check_st,$check_end)
-{
-    $check_val = false;
-    if($start > $check_end || $end < $check_st) $check_val = true;
-    return  $check_val;
-}