使用 ini 文件向 zend 表单添加验证

发布于 2024-10-20 19:45:24 字数 46 浏览 8 评论 0原文

Hii..

如何使用 ini 文件定义 zend 表单的验证。

Hii..

HOw do I define validations to a zend form using ini file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸 2024-10-27 19:45:24

在 application.ini (或者你有什么)

form.test.title[] = NotEmpty
form.test.title.Regexp.validator = Regex
form.test.title.Regexp.breakChainOnFailure = false
form.test.title.Regexp.options = /\W/

form.test.name[] = NotEmpty
form.test.name[] = Alnum

然后在 PHP 代码中:

/* The experimental form */
        $form = new Zend_Form ();
        $form->addElement('text', 'title', array ('label' => 'test1'));
        $form->addElement('text', 'name', array ('label' => 'test2'));
        $form->addElement('submit', 'submit');

/* Zend_Registry::get('config') is where I keep my application.ini after it has been parsed in the Bootstrap */
        $config = Zend_Registry::get('config')->form->test;

        foreach ($config as $index => $value)
        {


    if ($value instanceof Zend_Config)
        {
            foreach ($value as $validator)
            {
                if (is_string ($validator))
                {
                    $form->$index->addValidator ($validator);
                }
                else
                {
                    $form->$index->addValidators (array ($validator->toArray ()));
                }
            }
        }
        else
        {
            $form->$index->addValidator ($value);
        }
    }

In application.ini (or what have you)

form.test.title[] = NotEmpty
form.test.title.Regexp.validator = Regex
form.test.title.Regexp.breakChainOnFailure = false
form.test.title.Regexp.options = /\W/

form.test.name[] = NotEmpty
form.test.name[] = Alnum

And then in PHP code:

/* The experimental form */
        $form = new Zend_Form ();
        $form->addElement('text', 'title', array ('label' => 'test1'));
        $form->addElement('text', 'name', array ('label' => 'test2'));
        $form->addElement('submit', 'submit');

/* Zend_Registry::get('config') is where I keep my application.ini after it has been parsed in the Bootstrap */
        $config = Zend_Registry::get('config')->form->test;

        foreach ($config as $index => $value)
        {


    if ($value instanceof Zend_Config)
        {
            foreach ($value as $validator)
            {
                if (is_string ($validator))
                {
                    $form->$index->addValidator ($validator);
                }
                else
                {
                    $form->$index->addValidators (array ($validator->toArray ()));
                }
            }
        }
        else
        {
            $form->$index->addValidator ($value);
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文