Neos\Flow\ResourceManagement\Target\FileSystemTarget::encodeRelativePathAndFilenameForUri PHP Method

encodeRelativePathAndFilenameForUri() protected method

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