I'm trying to display an image which has strange characters in the OS filesys. I think the OS is CentOS Linux. I'm not sure what character encoding the OS filenames has, or if an 'ö' is always encoded the same way in the filename. At least the files that contain 'ö' in this folder do converted in the src to %F6 in the code below, but the browser cannot find the file. I have found no way to browse to these ö-files on the server.
$content = '';
$images = scandir("gallery/test");
foreach( $images as $im )
{
$im_rurl = rawurlencode($im);
if ( is_dir("gallery/$im") ) continue;
$content .= "<img src='gallery/test/$im_rurl' />";
}
echo $content;
Can you please help me to access these files from the browser?