動作しませんフォーム要素のparamsを経由してこのオプションを設定!このオプション( "テーマ"と "lang")をサービスに渡す必要があります。
public function __construct($publicKey = null, $privateKey = null,
$params = null, $options = null, $ip = null)
{
…
使用法:
$options = array('theme' => 'white', 'lang' => 'ru');
$recaptcha = new Zend_Service_ReCaptcha($publicKey, $privateKey, null, $options);
$this->view->recaptcha = $recaptcha->getHtml();
そうでない場合は、あなたのwanna利用形態の要素ならば、あなたは最初のサービスオブジェクトを取得する必要があります
はここZend_Service_ReCaptchaコンストラクタです。そのようなことを試してみてください:
$options = array('theme' => 'white', 'lang' => 'ru');
$form->getElement('captcha')->getCaptcha()->getService()->setOptions($options);
こんにちはDavidさんのスクリプトはこのように完全ではありません。秘密鍵と公開鍵のパラメータを追加する必要があります。よろしく – Michelangelo