在localhost和web hosting环境中需要有关Zend_Form_Element_Captcha的帮助

时间:2011-04-01 05:30:31

标签: zend-framework zend-form captcha zend-form-element

目前,我正在使用Zend框架开发Web应用程序。

我的问题是我必须为我的localhost(运行XAMPP的窗口环境)和web主机(linux环境)的captcha元素编写2组代码。

我的问题是,是否有更好的方法对其进行编码,以便它同时适用于我的localhost和Web托管环境?目前,当我上传到网络主机环境时,不断更改代码非常烦人。

提前非常感谢。 :)

以下是我的网络托管环境的代码

array('captcha' => array(
                 'captcha' => 'Image',
             'wordLen' => 3,
             'timeout' => 600,
                 'font' => '../font/arial.ttf',
                 'imgurl' => '../images/captcha/',
                 'fontsize' =>20,
             'expiration' =>20,
                         'lineNoiseLevel' =>0,
                         'DotNoiseLevel' =>10,
             )
                )
           );

它在Web主机上完美运行但是如果我在我的localhost窗口环境中运行它,我会得到空白的验证码,文本不会生成。

这是我目前对我的localhost及其工作的好处。

array('captcha' => array(
                 'captcha' => 'Image',
                 'wordLen' => 3,
                 'timeout' => 600,
                 'font' => 'C:\WINDOWS\Fonts\arial.ttf',
                 'imgurl' => 'http://localhost/images/captcha',
                 'fontsize' =>20,
                 'expiration' =>20,
                         'lineNoiseLevel' =>0,
                         'DotNoiseLevel' =>10,
             )
                )
           );

1 个答案:

答案 0 :(得分:2)

使用APPLICATION_PATH作为字体。 从http://framework.zend.com/manual/en/zend.captcha.adapters.html开始,默认为“./ images/captcha/”。所以不需要。 希望它可以帮到你。