启用视图助手时错误
我有这个视图助手:
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是一个拼写错误。这意味着您正在对数组应用字符串操作。您是否传入了 Zend 需要字符串的数组?看看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