1 drupal.inc drupal_parse_url($url)

Parses a system URL string into an associative array suitable for url().

Deprecated

since 1.0.0

See also

backdrop_parse_url()

Related topics

File

core/includes/drupal.inc, line 639
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_parse_url($url) {
  return backdrop_parse_url($url);
}