Form Checkbox Element ラベルのエスケープを無効にする方法を知りたいですか?
ラベル html が必要です。これが現在のコードです。
$score = new \Zend\Form\Element\MultiCheckbox('score');
$score->setLabel('Score');
$score->setOptions(array('value_options' => array(1 => '<b>Test 1</b>', 2 => '<b>Test 2</b>')));
$score->setAttributes(array('escape' => false));
$this->add($score);