Core::arbitHttpInputConverter
Class arbitHttpInputConverter
Arbit HTTP base input conversion class Arbit HTTP base input conversion class
Author(s):
|
Version:
|
$Revision: 1236 $ |
|
License:
|
GPL |
Descendants
| Child Class |
Description |
| arbitHttpArrayConverter |
Arbit HTTP array input conversions
Handle user input data as array. return an empty array otherwise.
|
| arbitHttpNumberConverter |
Arbit HTTP number input conversions
Handle user input data as numbers.
|
| arbitHttpNoConverter |
Arbit HTTP raw input conversions
Handle user input data as raw data. data, and should not be necessary to use normally.
|
| arbitHttpStringConverter |
Arbit HTTP string input conversions
Handle user input data as strings, and perform the necessary charset conversions.
|
Method Summary
|
public static
mixed |
convert(
$input
)
Convert client input
Convert and clean up client input. |
|
public static
mixed |
defaultValue(
)
Default value
Return the default value of the conversion class. used, if the form is not valid, or no value has been provided. |
Methods
convert
static mixed
convert(
mixed
$input
)
Convert client input
Convert and clean up client input. Convert client input
Convert and clean up client input.
Parameters:
| Name |
Type |
Description |
$input |
mixed |
|
Redefined in descendants as:
defaultValue
static mixed
defaultValue(
)
Default value
Return the default value of the conversion class. used, if the form is not valid, or no value has been provided. Default value
Return the default value of the conversion class. The default value is used, if the form is not valid, or no value has been provided.
Redefined in descendants as:
|