|
在控制器post中
先表单验证
$this->form_validation->set_rules('title', '标题', 'required|trim|htmlspecialchars');
'title' => $this->input->post('title',TRUE),
入库时再验证
'title' => empty($content['title']) ? NULL : $content['title']
而控制器user中
先表单验证
$this->form_validation->set_rules('uname', '用户名', 'required|trim|alpha_numeric|callback__name_check|strip_tags');
入库时未验证
$this->users_mdl->add_user(
array(
'name' => $this->input->post('uname',TRUE),
这里是否也需要empty啊
|
|