Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Kohana 3.3。通过确定一些规则,我将 ORM 用于验证表单。
我想制作一个需要的单选按钮。我有三个选项,没有一个可以提前检查。
我在网上搜索过,没有文档。
有人有想法吗?
谢谢
只需使用 not_empty 规则:
public function rules() { return array( 'your_field_name' => array( array('not_empty'), ), ); }