Ouzo\Uri::_parsePath PHP Méthode

_parsePath() private méthode

private _parsePath ( $path = null, $limit = null )
    private function _parsePath($path = null, $limit = null)
    {
        if ($path != null) {
            $prefix = Config::getValue('global', 'prefix_system');
            $pathWithoutPrefix = urldecode(str_replace($prefix, '', $path));
            return preg_split('#/|\\?#', $pathWithoutPrefix, $limit, PREG_SPLIT_NO_EMPTY);
        }
        return array();
    }