| 4.7 common.inc | base_path() |
| 5 common.inc | base_path() |
| 6 common.inc | base_path() |
| 7 common.inc | base_path() |
| 8 common.inc | base_path() |
Return the base URL path (i.e., directory) of the Drupal installation.
base_path() prefixes and suffixes a "/" onto the returned path if the path is not empty. At the very least, this will return "/".
Examples:
function base_path() {
return $GLOBALS['base_path'];
}