Neos\Flow\ResourceManagement\Target\FileSystemTarget::encodeRelativePathAndFilenameForUri PHP 메소드

encodeRelativePathAndFilenameForUri() 보호된 메소드

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