启用视图助手时错误

发布于 2024-10-29 04:39:41 字数 812 浏览 1 评论 0原文

我有这个视图助手:

$this->addElement('text','evt_amtpersons', array(
     'description'     =>  '<a id="buyCredit" href="/user/register" target="_blank">Dit is een link</a>',
        'filters'   => array('StringTrim', 'StringToLower'),
        'ViewHelper',
            array('Description', array('escape'=>false, 'tag'=>false)),
        'validators'=> array(
            array('StringLength',true,array(1,128)),
        ),
        'required'  => true,
        'label'     => 'aantal hulpverleners',
    ));

wheb我启用了视helper,我会收到以下错误:

注意:k:\ xampp \ htdocs \ nrka2 \ liblary \ zend \ zend \ zend \ htmper \ htmlelement.php in Line 104

通常意味着存在拼写错误。但我找不到它。 我正在运行最新版本的ZF(1.11.4) 有什么想法吗?

Tnx。

I have this view Helper:

$this->addElement('text','evt_amtpersons', array(
     'description'     =>  '<a id="buyCredit" href="/user/register" target="_blank">Dit is een link</a>',
        'filters'   => array('StringTrim', 'StringToLower'),
        'ViewHelper',
            array('Description', array('escape'=>false, 'tag'=>false)),
        'validators'=> array(
            array('StringLength',true,array(1,128)),
        ),
        'required'  => true,
        'label'     => 'aantal hulpverleners',
    ));

Wheb I enable the ViewHelper I get the following error:

Notice: Array to string conversion in K:\xampp\htdocs\nrka2\library\Zend\View\Helper\HtmlElement.php on line 104

Usually it means there is a typo. But I can't find it.
I am running the latest version of the ZF (1.11.4)
Any idea's?

Tnx.

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

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

发布评论

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

评论(1

一梦浮鱼 2024-11-05 04:39:41

'数组到字符串的转换
K:\xampp\htdocs\nrka2\library\Zend\View\Helper\HtmlElement.php
第 104 行'

这不是一个拼写错误。这意味着您正在对数组应用字符串操作。您是否传入了 Zend 需要字符串的数组?看看104行

'Array to string conversion in
K:\xampp\htdocs\nrka2\library\Zend\View\Helper\HtmlElement.php
on line 104'

This is not a typo. This means you're applying a string operation on an array. Are you passing in an array where Zend expects a string? Have a look at line 104

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文