[web] Zend framework form element, filter, validator整理
Form Element Zend_Form_Element_Button button Zend_Form_Element_Captcha <?php // Using single captcha key: $element = new Zend_Form_Element_Captcha ( 'foo' , array ( 'label' = > "Please verify you're a human" , 'captcha' = > array ( 'captcha' = > 'Figlet' , 'wordLen' = > 6 , 'timeout' = > 300 , ) , ) ) ; ?>