在ZF1
我可以将字符串呈现为html
,如下所示:
$firstPhoto = new Zend_form_Element_Radio('firstPhoto', array('escape' => false));
然后我可以填充我的radio elements
,一切都很顺利。
在ZF2
我无法找到解决这个问题的方法。我使用带有key(id)
和value(image string)
的数组设置我的valueOptions,我想将img字符串渲染为图像而不是html。
任何人都知道该怎么做?