function drupal_encode_path

Encodes a Drupal path for use in a URL.

For aesthetic reasons slashes are not escaped.

Note that url() takes care of calling this function, so a path passed to that function should not be encoded in advance.

Parameters

$path: The Drupal path to encode.

Related topics

3 calls to drupal_encode_path()
DrupalPublicStreamWrapper::getExternalUrl in drupal/includes/stream_wrappers.inc
Overrides getExternalUrl().
file_create_url in drupal/includes/file.inc
Creates a web-accessible URL for a stream to an external or local file.
url in drupal/includes/common.inc
Generates an internal or external URL.

File

drupal/includes/common.inc, line 634
Common functions that many Drupal modules will need to reference.

Code

function drupal_encode_path($path) {
  return str_replace('%2F', '/', rawurlencode($path));
}