Ejemplo n.º 1
0
 /**
  * Return a list of include_path setting + the PACKAGES
  *
  * @return array
  */
 static final function getIncludePaths($packages = PACKAGES)
 {
     if (is_null(self::$__include_paths)) {
         $os = self::getOperatingSystem();
         self::$__include_paths = explode($os == "win32" ? ";" : ":", ini_get("include_path"));
         self::$__include_paths[] = $packages;
     }
     return self::$__include_paths;
 }