Beispiel #1
0
 /**
  * Parses server config to figure out various path information
  *
  * @return array paths
  */
 function parse_paths()
 {
     $path = "";
     $i = 0;
     while (!file_exists("{$path}boot.php")) {
         $path .= "../";
         $i++;
     }
     if ($_SERVER['PHP_SELF'] == "") {
         $_SERVER['PHP_SELF'] = $_SERVER['SCRIPT_NAME'];
     }
     $http_path = dirname($_SERVER['PHP_SELF']);
     $http_path = explode("/", $http_path);
     $http_path = array_reverse($http_path);
     $j = 0;
     while ($j < $i) {
         unset($http_path[$j]);
         $j++;
     }
     $http_path = array_reverse($http_path);
     $server_path = implode("/", $http_path) . "/";
     $server_path = path::fix_windows_paths($server_path);
     if ($server_path == "//") {
         $server_path = "/";
     }
     $paths = array('file' => $path, 'http' => $server_path);
     return $paths;
 }