CakePHP:验证用户超过13年

时间:2012-07-20 22:33:44

标签: cakephp

我的模型中有以下验证规则:

'dob' => array(
            'required' => array(
                'rule' => array('notEmpty'),
                'message' => 'Date of Birth is required'
            ),
            'age' => array(
                'rule' => array('comparison', '>=', 13),
                'message' => 'You must be over 13 years old'
            )
        )

我想要达到的目的是验证用户已超过13岁......

日期创建如下:

<?php echo $this->Form->input('Profile.dob', array('label' => 'Date of Birth'
                                        , 'dateFormat' => 'DMY'
                                        , 'minYear' => date('Y') - 110
                                        , 'maxYear' => date('Y') - 13)); ?>

我怎么做呢?由于保存的数据是日期而不是整数,所以我的比较不起作用...在这里寻找最简单的解决方案,而不必回复插件或其他外部资产,如果可能的话只需要一些简单的代码。

感谢。

编辑:基于以下评论我添加了:

public function checkDOB($check) {
        return strtotime($check['dob']) < strtotime();
    }

但是我在strtotime中检查年龄是高于还是等于13?

1 个答案:

答案 0 :(得分:5)

在模型中创建自定义验证规则:

public function checkOver13($check) {
  $bday = strtotime($check['dob']);
  if (time() < strtotime('+13 years', $bday)) return false;
  return true;
}

这使用strtotime的简洁功能,可让您轻松地在特定日期进行日期计算。

使用规则:

'dob' => array(
  'age' => array(
    'rule' => 'checkOver13',
    'message' => 'You must be over 13 years old'
  )
)