| 7 common.inc | drupal_encode_path($path) |
| 8 common.inc | drupal_encode_path($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()
File
- includes/
common.inc, line 624 - Common functions that many Drupal modules will need to reference.
Code
function drupal_encode_path($path) {
return str_replace('%2F', '/', rawurlencode($path));
}
Login or register to post comments
Comments
Drupal 6
In Drupal 6, the corresponding function is http://api.drupal.org/api/function/drupal_urlencode/6