I am using php glob() function to find matching files in a directory.
glob("*.txt");
It works for filenames with ascii characters e.g. sports.txt, frys.txt etc. However, it does not work with filenames that contain non-ascii character such as pénètre.txt.
Any thoughts?