Codeigniter:验证 - 日期不得超过两个日期

时间:2017-08-24 14:24:35

标签: codeigniter

我需要解决这个问题: 1)我在我的项目中有两个日期输入 2)我需要注册(第一次约会)的日期不得超过锦标赛的日期(第二次约会)。

<div class="form-group">
                        <label for="date"><?php echo $lang['date_tournament']; ?></label>
                        <input type="text" class="form-control datepicker" name="date_tournament" required> 

1 个答案:

答案 0 :(得分:0)

<?php $first = strtotime($registrationdate);
$second = strtotime($tournamentdate);
$datediff = $first  - $second;

if(floor($datediff / (60 * 60 * 24))<2){
echo 'valid';
} ?>