I\'m currently trying to write a simple script that looks in a folder, and returns a list of all the file names in an RSS feed. However I\'ve hit a major wall... Whenever I
This displays Japanese filenames correctly on a Windows server
if ($handle = opendir($this->dir)) { while (false !== ($file = readdir($handle))){ $name = mb_convert_encoding($file, "UTF-8", "SJIS-win" ); echo "$name"; } closedir($handle); }