예제 #1
0
파일: Paths.php 프로젝트: axoquen/tt780
 static function __split($ruta)
 {
     $ruta = explode("/", Paths::__clean($ruta));
     $r = array();
     foreach ($ruta as $k) {
         if ($k != '') {
             $r[] = $k;
         }
     }
     return $r;
 }