Habari\SuperGlobal::raw PHP Метод

raw() публичный Метод

Return the raw, unfiltered value of the requested index
public raw ( mixed $index ) : mixed
$index mixed The index of the value
Результат mixed The unfiltered value
    public function raw($index)
    {
        if (isset($this->raw_values[$index])) {
            return $this->raw_values[$index];
        }
        $cp = $this->get_array_copy_raw();
        if (isset($cp[$index])) {
            $this->raw_values[$index] = $cp[$index];
            return $this->raw_values[$index];
        }
    }