Example #1
0
 /**
  * Retrieve a variable from POST
  *
  * @param string            $variable   Variable name
  * @param int|string        $filter     Filter name or filter_id
  * @param array|int|string  $options    Filter options or flag
  * @return mixed
  */
 function _post($variable = null, $filter = '', $options = null)
 {
     $value = FilterManager::fromPost($variable, $filter, $options);
     return $value;
 }