我想强制 ReCaptcha 表单在 Zend 中只使用 EN 语言,但是这些代码对我不起作用:
$recaptcha = new Zend_Service_ReCaptcha($publickey, $privatekey);
$captcha = new Zend_Form_Element_Captcha('captcha',
array(
'captcha' => 'ReCaptcha',
'captchaOptions' => array('captcha' => 'ReCaptcha', 'service' => $recaptcha, 'lang'=>'en'),
'ignore' => true
)
);
$this->addElement($captcha);
有什么想法吗?