PHPFusion\Rewrite\Router::setquerystring PHP Метод

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

Set the new QUERY_STRING This function will set the values of QUERY_STRING to new value which is calculated in buildParams().
public setquerystring ( )
    public function setquerystring()
    {
        if (!empty($_SERVER['QUERY_STRING'])) {
            $_SERVER['QUERY_STRING'] = $_SERVER['QUERY_STRING'] . "&" . $this->buildParams();
        } else {
            $_SERVER['QUERY_STRING'] = $this->buildParams();
        }
    }