Beispiel #1
0
 public static function up($path)
 {
     if ($path == self::SEP || $path == "") {
         return null;
     }
     $ps = PathUtil::splitPath($path);
     array_pop($ps);
     return join(self::SEP, $ps) . self::SEP;
 }