0
我試圖實現Zend_Filter_Input來驗證數組中的第一個值是否爲空。使用Zend_Filter_Input驗證數組中的單個值
這裏是我的HTML:
<input type="text" name="Firstname[1]">
<input type="text" name="Firstname[2]">
<input type="text" name="Firstname[3]">
這個代碼不工作:
$validators = array(
'Firstname[1]' => array(
'NotEmpty'
));
$input = new Zend_Filter_Input(null, $validators, $_POST);
任何提示?
我已經使用$ data數組這實際上是$ _ POST來自輸入表單的所有字段。因此更新了上面的代碼示例。有沒有一種方法來驗證Firstname數組中只有指定的字段,還是隻需要將相關字段複製到$ data中進行驗證過程? – Erik
你的$ _POST數組實際看起來像什麼? – RockyFord