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);
ヒントはありますか?