• 전화하지 마셈
  • hyungseob@ssim.pe.kr
Codeigniter 3.x에서 4.x로 갈아 엎느라 기존 게시판 주소로 접근시 새 주소로 리다이렉션 된다.

Developerment [PHP]

[ZF] Zend\Form으로 Radio버튼 생성할때 버튼 뒤에 삽입하기

  • 빛그림
  • 335
Zend Framework에 부트스트랩 커스텀 테마를 이용하여 Zend\Form 작업중 radio 버튼 뒤에 삽입해줘야 하는 일이 생겨서 아래와 같은 방법으로 처리했다.
 
$this->add([
    'name' => 'gender',
    'type' => Element\Radio::class,
    'attributes' => [
        'class' => 'form-check-input',
    ],
    'options' => [
        'label' => '성별',
        'label_attributes' => [
            'class' => 'col-sm-2 control-label',
        ],
        'value_options' => [
            'M' => '남자',
            'F' => '여자',
        ]
    ]
]);
$element = $this->get('gender');
$element->setLabelOptions(['disable_html_escape' => true]);

위 코드를 이용하면 아래와 같이 Zend/Form으로 Radio버튼을 생성 할때도 뒤에 을 삽입할 수 있다.



새댓글 등록