Example #1
0
 static function pathListing($path = FALSE)
 {
     if (!is_string($path) || !$path) {
         return FALSE;
     }
     $path = explode("/", $path);
     array_walk($path, "self::pathListingJunior", $path);
     $completeValue = self::$pathListingStr;
     self::$pathListingStr = null;
     return $completeValue;
 }