Definition

base_path()
drupal-cvs/includes/common.inc, line 1768

Description

Returns the base URL path of the Drupal installation. At the very least, this will always default to /.

Code

<?php
function base_path() {
  return $GLOBALS['base_path'];
}
?>