2011-10-14 68 views

回答

2

從使用表單驗證庫,我從來沒有見過任何可以讓你做到這一點沒有回調。

這將是回調,但:

function numeric_wcomma ($str) 
{ 
    return preg_match('/^[0-9,]+$/', $str); 
} 

$this->form_validation->set_rules('input', 'Input', 'callback_numeric_wcomma'); 
+0

由於規則,希望有在單行做這件事的方式,但會滿足於一個回調 – Alex

相關問題