2011-04-01 101 views
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啓用視圖助手我得到以下錯誤:

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

通常這是指有一個錯字。但我找不到它。 我正在運行最新版本的ZF(1.11.4) 任何想法的?

Tnx。

+0

使用XDebug查看會發生什麼 – 2011-04-01 13:27:02

回答

0

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

這不是拼寫錯誤。這意味着您正在對數組應用字符串操作。你在傳遞一個Zend需要一個字符串的數組嗎?看看第104行