Skip to content

필드 타입 - Text

text는 기본 문자열 필드입니다. 타입을 생략하면 text로 처리됩니다.

php
'name' => array(
    'type' => 'text',
    'title' => '이름',
    'limit' => 30,
);

limit은 입력 가능한 글자 수 제한입니다. 필터로 사용하면 입력 문자열과 일치하는 항목을 검색합니다.

Released under the MIT License.