我正在使用回调来验证文本输入提交的 URL。NULL
如果文本输入为空(意味着用户删除了他/她的 URL 条目),我需要在数据库中插入。我正在尝试下面的代码,但它只是在数据库中插入一个空字符串。
$this->form_validation->set_rules('image_url', 'Image URL', 'trim|xss_clean|prep_url|callback__validate_url');
回调:
function _validate_url($str)
{
if (isset($str))
{
$pattern = "/^(http|https):\/\/([A-Z0-9][A-Z0-9_-]*(?:\.[A-Z0-9][A-Z0-9_-]*)+):?(\d+)?\/?/i";
if (!preg_match($pattern, $str))
{
$this->form_validation->set_message('_validate_url', 'URL is not valid');
return FALSE;
}
else
{
if (!isset($str)) //if input empty
{
return NULL; //return NULL to input?
}
return TRUE;
}
}
return TRUE;
}
如何通过回调将值返回到输入?
更新:
上面的代码是错误的,我无法NULL
在输入中返回(我猜是因为它返回一个字符串)所以我在回调之外做了
$image_url = $this->input->post('image_url');
if (empty($image_url))
{
$image_url = NULL;
}
$data = array (
'content' => $this->input->post('content'),
'image_url' => $entry_image_url
);
//add to database