Sets parameters from the query string.
Description
Typically, this is set from $_GET
.
Parameters
$params
arrayrequired- Parameter map of key to value.
Source
public function set_query_params( $params ) {
$this->params['GET'] = $params;
}
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |
User Contributed Notes