request_uri

  1. drupal
    1. 4.7 bootstrap.inc
    2. 5 bootstrap.inc
    3. 6
    4. 7
Versions
4.7 – 7 request_uri()

Since $_SERVER['REQUEST_URI'] is only available on Apache, we generate an equivalent using other environment variables.

▾ 11 functions call request_uri()

drupal_page_get_cache in drupal/includes/bootstrap.inc
Retrieve the current page from the cache.
drupal_page_set_cache in drupal/includes/common.inc
Store the current page in the cache.
drupal_render_cid_parts in drupal/includes/common.inc
Helper function for building cache ids.
install_verify_requirements in drupal/includes/install.core.inc
Installation task; verify the requirements for installing Drupal.
locale in drupal/modules/locale/locale.module
Provides interface translation services.
openid_verify_assertion_return_url in drupal/modules/openid/openid.module
Verify that openid.return_to matches the current URL.
system_clean_url_settings in drupal/modules/system/system.admin.inc
Form builder; Configure clean URL settings.
system_element_info in drupal/modules/system/system.module
Implements hook_element_info().
update_check_requirements in drupal/update.php
Check update requirements and report any errors.
watchdog in drupal/includes/bootstrap.inc
Log a system message.
watchdog_skip_semaphore in drupal/modules/simpletest/tests/actions_loop_test.module
Replacement of the watchdog() function that eliminates the use of semaphores so that we can test the abortion of an action loop.

Code

drupal/includes/bootstrap.inc, line 1389

<?php
function request_uri() {

  if (isset($_SERVER['REQUEST_URI'])) {
    $uri = $_SERVER['REQUEST_URI'];
  }
  else {
    if (isset($_SERVER['argv'])) {
      $uri = $_SERVER['SCRIPT_NAME'] . '?' . $_SERVER['argv'][0];
    }
    elseif (isset($_SERVER['QUERY_STRING'])) {
      $uri = $_SERVER['SCRIPT_NAME'] . '?' . $_SERVER['QUERY_STRING'];
    }
    else {
      $uri = $_SERVER['SCRIPT_NAME'];
    }
  }
  // Prevent multiple slashes to avoid cross site requests via the Form API.
  $uri = '/' . ltrim($uri, '/');

  return $uri;
}
?>