$input->queryStringClean() method

Return a cleaned query string that was part of this request, or blank if none

Note: it is recommended that you always specify $options with this method as the defaults may or may not be consistent with your needs.

Available since version 3.0.167.

Usage

// basic usage
$string = $input->queryStringClean();

// usage with all arguments
$string = $input->queryStringClean(array $options = []);

Arguments

NameType(s)Description
options (optional)array
  • values (array): Optional associative array of [name=value] to use in query string rather than current GET vars. (default=[])
  • overrides (array): Array of values to override or add to current request values. (default=[])
  • validNames (array): Only include query string variables with these names, and omit any others. (default=[])
  • maxItems (int): Maximum number of variables/items to include in the query string or 0 for no max. (default=20)
  • maxLength (int): Max overall length of returned query string or 0 for no max. (default=1024)
  • maxNameLength (int): Max length of any “name” in the “name=value” portion of a query string or 0 for no max. (default=50)
  • maxValueLength (int): Max length of any “value” in the “name=value” portion of a query string or 0 for no max. (default=255)
  • maxArrayDepth (int): Maximum depth for arrays, or 0 to disallow arrays. (default=0)
  • maxArrayItems (int): Maximum number of items allowed in arrays or 0 for no max. (default=20)
  • associative (bool): Allow associative arrays? (default=false)
  • sanitizeName (string): Sanitize query string variable names with this sanitizer method or blank to ignore. (default='fieldName')
  • sanitizeValue (string): Sanitize query string variable values with this sanitizer method or blank to ignore. (default='line')
  • sanitizeRemove (bool): Remove any variables from query string that are changed as the result of sanitization? (default=true)
  • entityEncode (bool): Should returned query string be entity encoded for HTML output? (default=true)
  • encType (int): Use PHP_QUERY_RFC3986 for spaces encoded to '%20' or PHP_QUERY_RFC1738 for spaces as '+'. (default=PHP_QUERY_RFC3986)
  • separator (string): Character(s) that separate each “name=value” in query string. (default='&')

Return value

string


$input methods and properties

API reference based on ProcessWire core version 3.0.236

Latest news

  • ProcessWire Weekly #544
    In the 150th issue of ProcessWire Weekly we'll check out brand-new third party module called Inputfield Dependency Helper, share some recent highlights from the support forum, and more. Read on!
    Weekly.pw / 12 October 2024
  • Custom Fields Module
    This week we look at a new ProFields module named Custom Fields. This module provides a way to rapidly build out ProcessWire fields that contain any number of subfields/properties within them.
    Blog / 30 August 2024
  • Subscribe to weekly ProcessWire news

“We were really happy to build our new portfolio website on ProcessWire! We wanted something that gave us plenty of control on the back-end, without any bloat on the front end - just a nice, easy to access API for all our content that left us free to design and build however we liked.” —Castus, web design agency in Sheffield, UK