Метод | Описание | |
---|---|---|
CleanMagicQuotes ( array $p_array ) : array | Please see: {@link http://ca.php.net/manual/en/function.get-magic-quotes-gpc.php this PHP.net page specifically the user note by php at kaiundina dot de}, for why this is so complicated. | |
Get ( string $p_varName, string $p_type = 'string', mixed $p_defaultValue = null, boolean $p_errorsOk = false ) : mixed | Get an input value from the $_REQUEST array and check its type. | |
GetErrorString ( ) : string | Return a default error string. | |
GetMethod ( ) : string | Returns the method used to read the input data: GET, POST etc. | |
GetVar ( $p_varName, $p_type = 'string', $p_defaultValue = null, $p_errorsOk = false ) | Get an input value from the $_REQUEST array and check its type. | |
IsValid ( ) : boolean | Return FALSE if any calls to Input::Get() resulted in an error. |
public static CleanMagicQuotes ( array $p_array ) : array | ||
$p_array | array | |
Результат | array |
public static Get ( string $p_varName, string $p_type = 'string', mixed $p_defaultValue = null, boolean $p_errorsOk = false ) : mixed | ||
$p_varName | string | The index into the $_REQUEST array. |
$p_type | string | The type of data expected; can be: "int" "string" "array" "checkbox" "boolean" Default is 'string'. |
$p_defaultValue | mixed | The default value to return if the value is not defined in the $_REQUEST array, or if the value does not match the required type. |
$p_errorsOk | boolean | Set to true to ignore any errors for this variable (i.e. Input::IsValid() will still return true even if there are errors for this varaible). |
Результат | mixed |
public static GetErrorString ( ) : string | ||
Результат | string |
public static GetVar ( $p_varName, $p_type = 'string', $p_defaultValue = null, $p_errorsOk = false ) |