The fields available to construct the Form
class are described in this page.
Each field can has custom data formating and validation.
Field attributes must be passed based in an array:
<?php
use PHPForm\Fields\CharField;
new CharField(["label" => "Name", required => true]);
All fields available takes at least this attributes.
Define which Widget
class will be used to render the field. See widgets for more info.
Human-friendly label used when displaying the field.
The default value is calculated based on the field name, transforming underscores into spaces and upper-casing the first letter.
By default, the field assumes the value is not required. To make it required, you need to define it as true explicitly.
When is required, calling clean()
with empty value will throw a ValidationError
exception.
<?php
use PHPForm\Fields\CharField;
$field = new CharField(["required" => true]);
// all this examples will throw:
// PHPForm\Exceptions\ValidationError: This field is required.
$field->clean("");
$field->clean(" ");
$field->clean(null);
$field->clean(false);
$field->clean(0);
// all this examples not
echo $field->clean("value"); // "value"
echo $field->clean(1); // "1"
!!! info "empty" empty php function used to check emptiness.