FormInterface
in
Form interface class
Tags
Table of Contents
Methods
- __get() : mixed
- Get method to return the value of values[$name]
- __isset() : bool
- Return the isset value of values[$name]
- __set() : void
- Set method to set the property to the value of values[$name]
- __unset() : void
- Unset values[$name]
- count() : int
- Count of values
- getIterator() : ArrayIterator
- Method to iterate over object
- offsetExists() : bool
- ArrayAccess offsetExists
- offsetGet() : mixed
- ArrayAccess offsetGet
- offsetSet() : void
- ArrayAccess offsetSet
- offsetUnset() : void
- ArrayAccess offsetUnset
- toArray() : array<string|int, mixed>
- Get values
Methods
__get()
Get method to return the value of values[$name]
public
__get(string $name) : mixed
Parameters
- $name : string
__isset()
Return the isset value of values[$name]
public
__isset(string $name) : bool
Parameters
- $name : string
Return values
bool__set()
Set method to set the property to the value of values[$name]
public
__set(string $name, mixed $value) : void
Parameters
- $name : string
- $value : mixed
__unset()
Unset values[$name]
public
__unset(string $name) : void
Parameters
- $name : string
count()
Count of values
public
count() : int
Return values
intgetIterator()
Method to iterate over object
public
getIterator() : ArrayIterator
Return values
ArrayIteratoroffsetExists()
ArrayAccess offsetExists
public
offsetExists(mixed $offset) : bool
Parameters
- $offset : mixed
Return values
booloffsetGet()
ArrayAccess offsetGet
public
offsetGet(mixed $offset) : mixed
Parameters
- $offset : mixed
offsetSet()
ArrayAccess offsetSet
public
offsetSet(mixed $offset, mixed $value) : void
Parameters
- $offset : mixed
- $value : mixed
offsetUnset()
ArrayAccess offsetUnset
public
offsetUnset(mixed $offset) : void
Parameters
- $offset : mixed
toArray()
Get values
public
toArray([array<string|int, mixed> $options = [] ]) : array<string|int, mixed>
Parameters
- $options : array<string|int, mixed> = []