嗨,我是 zend 框架的新手。我想在 zend 表单的输入框中设置仅就绪属性。就像我们在 html 中做的那样
<input type ="text" readonly="readonly" />
这是我的zend代码:
$this->addElement('text', 'name', array(
'label' => '',
'required' => true,
'filters' => array('StringTrim'),
'style' => array('width:338px'),
'autocomplete' => 'off',
'decorators'=>Array(
'ViewHelper',
'Errors',
),
帮我