如何使用Kohana 3为ORM模型定义alpha或字母数字规则?

时间:2010-10-02 18:03:13

标签: php validation orm kohana-3

我在我的模特中这样做....

   protected $_rules = array(
      'id' => array(
            'not_empty' => NULL,
            'numeric' => array(TRUE)
             )
....

我是否正确使用数字限定符?

感谢。

1 个答案:

答案 0 :(得分:0)

是的,你做对了。