Neos\Flow\ResourceManagement\Target\FileSystemTarget::encodeRelativePathAndFilenameForUri PHP Méthode

encodeRelativePathAndFilenameForUri() protected méthode

Applies rawurlencode() to all path segments of the given $relativePathAndFilename
protected encodeRelativePathAndFilenameForUri ( string $relativePathAndFilename ) : string
$relativePathAndFilename string
Résultat string
    protected function encodeRelativePathAndFilenameForUri($relativePathAndFilename)
    {
        return implode('/', array_map('rawurlencode', explode('/', $relativePathAndFilename)));
    }