The model name for which the form is being defined. Should include the plugin name for plugin models. e.g. ContactManager.Contact. If an array is passed and $options argument is empty, the array will be used as options. If false, no model is used.
An array of html attributes and options. Possible options are type, action, url, default, onsubmit, inputDefaults, encoding.
Returns
A formatted opening FORM tag.
Description
Returns an HTML FORM element.
옵션 및 HTML 속성 배열
반품
HTML 버튼 태그.
설명
태그를 생성합니다. 유형 속성의 기본값은
type="submit"
입니다.
Syntax
file(string $fieldName, array $optionsarray() )
Parameters
Name of a field, in the form "Modelname.fieldname"
Array of HTML attributes.
Returns
A generated file input.
Description
Creates file input widget.
$options['type']을 사용하여 다른 값으로 변경할 수 있습니다.
다음 함수는 HTML 페이지에서 체크박스를 생성하는 데 사용됩니다.
구문
체크박스(string $fieldName, array $optionsarray() )
매개변수
"Modelname.fieldname"과 같은 필드 이름
HTML 속성 배열. 가능한 옵션은 value,checked,hiddenField,disabled,default입니다.
반품
HTML 텍스트 입력 요소
설명
체크박스 입력 위젯을 생성합니다.
다음 기능은 HTML 페이지에서 양식을 작성하는 데 사용됩니다.
구문
생성( 혼합 $modelnull , 배열 $optionsarray() )
매개변수
양식이 정의되는 모델 이름입니다. 플러그인 모델의 플러그인 이름을 포함해야 합니다. 예를 들어 ContactManager.연락처. 배열이 전달되고 $options 인수가 비어 있으면 배열이 옵션으로 사용됩니다. false인 경우 모델이 사용되지 않습니다.
html 속성 및 옵션의 배열입니다. 가능한 옵션은 유형, 작업, URL, 기본값, 제출 시, inputDefaults, 인코딩입니다.
The label appearing on the button OR if string contains :// or the extension .jpg, .jpe, .jpeg, .gif, .png. Use an image if the extension exists, AND the first character is /, image is relative to webroot, OR if the first character is not /, image is relative to webroot/img.
Array of options. Possible options are div, before, after, type etc.
Returns
An HTML submit button
Description
Creates a submit button element. This method will generate elements that can be used to submit, and reset forms by using $options. Image submits can be created by supplying an image path for $caption.
버튼에 표시되는 라벨 또는 문자열에 :// 또는 확장자 .jpg, .jpe, .jpeg, .gif, .png가 포함된 경우. 확장명이 존재하고 첫 번째 문자가 /이고 이미지가 webroot에 상대적인 경우 또는 첫 번째 문자가 /가 아닌 경우 이미지가 webroot/img에 상대적인 경우 이미지를 사용하세요.
옵션 배열. 가능한 옵션은 div, before, after, type 등입니다.
반품
HTML 제출 버튼
설명
제출 버튼 요소를 생성합니다. 이 메소드는 $options를 사용하여 양식을 제출하고 재설정하는 데 사용할 수 있는 요소입니다. $caption에 대한 이미지 경로를 제공하여 이미지 제출을 생성할 수 있습니다.
RegistrationsController.php 파일을 에서 생성하세요.
src/Controller/RegistrationsController.php. 컨트롤러 파일에 다음 코드를 복사하세요.
src/Controller/RegistrationsController.php
src/Template에 Registrations 디렉토리를 생성하고 해당 디렉토리 아래에 index.php라는 View 파일을 생성합니다. 해당 파일에 다음 코드가 있습니다.
src/Template/Registrations/index.php
다음 URL을 방문하여 위의 예를 실행하세요 -
http://localhost/cakephp4/register
출력
실행하면 다음과 같은 결과가 출력됩니다.
위 내용은 CakePHP 양식 처리의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!