I am creating a very simple file search, where the search database is a text file with one file name per line. The database is built with PHP, and matches are found by grepping the file (also with PHP).
This works great in Linux, but not on Mac when non-ascii characters are used. It looks like names are encoded differently on HFS+ (MacOSX) than on e.g. ext3 (Linux). Here's a test.php:
<?php
$mystring = "abcóüÚdefå";
file_put_contents($mystring, "");
$h = dir('.');
$h->read(); // "."
$h->read(); // ".."
$filename = $h->read();
print "$mystring\n$filename\n";
if ($mystring == $filename) print "equal\n";
else print "different\n";
When run MacOSX:
$ php test.php
abcóüÚdefå
abcóüÚdefå
different
$ php test.php |cat -evt
abcóü?M-^Zdefå$
abco?M-^Au?M-^HU?M-^Adefa?M-^J$
different$
When run on Linux (or on a nfs-mounted ext3 filesystem on MacOSX):
$ php test.php
abcóüÚdefå
abcóüÚdefå
equal
$ php test.php |cat -evt
abcM-CM-3M-CM-<M-CM-^ZdefM-CM-%$
abcM-CM-3M-CM-<M-CM-^ZdefM-CM-%$
equal$
Is there a way to make this script return "equal" on both platforms?
EDIT: It looks like MacOSX uses normalization form D (NFD) to encode UTF-8, while most other systems use NFC. I can find several implementations on NFD to NFC conversion, but I have yet to find a small and simple one.
EDIT2: Found one!

