Newscoop\Service\Implementation\ThemeServiceLocalFileSystem::escapePath PHP 메소드

escapePath() 보호된 메소드

Converts the provided path from the OS specific form (if is the cae) to using just forward slashes.
protected escapePath ( string $path ) : string
$path string The path, *(not null not empty).
리턴 string The escaped path.
    protected function escapePath($path)
    {
        return str_replace(DIR_SEP, '/', $path);
    }