drupal_http_build_query

Versions
mediamosa-21
drupal_http_build_query(array $query, $parent = '')

Parse an array into a valid, rawurlencoded query string.

This differs from http_build_query() as we need to rawurlencode() (instead of urlencode()) all query parameters.

See also

drupal_get_query_parameters()

Parameters

$query The query parameter array to be processed, e.g. $_GET.

$parent Internal use only. Used to build the $query array key for nested items.

Return value

A rawurlencoded string which can be used as or appended to the URL query string.

Related topics

▾ 6 functions call drupal_http_build_query()

drupal_get_destination in includes/common.inc
Prepare a 'destination' URL query parameter for use in combination with drupal_goto().
drupal_http_build_query in includes/common.inc
Parse an array into a valid, rawurlencoded query string.
install_redirect_url in includes/install.core.inc
Return the URL that should be redirected to during an installation request.
menu_edit_item in modules/menu/menu.admin.inc
Menu callback; Build the menu link editing form.
shortcut_preprocess_page in modules/shortcut/shortcut.module
Implements hook_preprocess_page().
url in includes/common.inc
Generate a URL.

Code

includes/common.inc, line 465

<?php
function drupal_http_build_query(array $query, $parent = '') {
  $params = array();

  foreach ($query as $key => $value) {
    $key = ($parent ? $parent . '[' . rawurlencode($key) . ']' : rawurlencode($key));

    // Recurse into children.
    if (is_array($value)) {
      $params[] = drupal_http_build_query($value, $key);
    }
    // If a query parameter value is NULL, only append its key.
    elseif (!isset($value)) {
      $params[] = $key;
    }
    else {
      // For better readability of paths in query strings, we decode slashes.
      $params[] = $key . '=' . str_replace('%2F', '/', rawurlencode($value));
    }
  }

  return implode('&', $params);
}
?>