本文整理汇总了PHP中Sanitize::save方法的典型用法代码示例。如果您正苦于以下问题:PHP Sanitize::save方法的具体用法?PHP Sanitize::save怎么用?PHP Sanitize::save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sanitize
的用法示例。
在下文中一共展示了Sanitize::save方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get
/**
* Returns a value from the $_REQUEST array.
*
* You have to specify the index of the $_REQUEST-array. The second parameter
* is the type of the variable. Default is VAR_NONE. You can specify thw
* following constants: VAR_NONE, VAR_DB, VAR_INT, VAR_ALNUM, VAR_ARR_NONE,
* VAR_ARR_STR, VAR_ARR_INT, VAR_ARR_ALNUM, VAR_HTML, VAR_ARR_HTML.
* With the third parameter you can specify a default value, which will be set
* when the $_REQUEST-array does not contain an entry with the specified index.
*
* @param string Index
* @param int Type of variable
* @param mixed Default value
* @return mixed Value for specified index
* @static
**/
public static function get($index, $type = VAR_NONE, $standard = null)
{
$value = null;
if (is_int($index)) {
$value = Request::getObject()->getArg($index);
} else {
if (isset($_REQUEST[$index])) {
$value = $_REQUEST[$index];
}
}
return Sanitize::save($value, $type, $standard);
}