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

4 calls to drupal_encode_path()

File

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

Code

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